Re: Question: Making a Gtk+ application interacts with octave (ups)

2005-07-18 Thread amartinez
Thank you for the response. I think I haven't been as clear as can bee in my previous mail. I'd like to do this "from Octave" (as a script or in the Octave's command shell): 0. % this is a Octave script: 1. gtk_imshow (x, r,c); 2. pause 3. gtk_imshow (x.*2, r,c); 4.

Question: Making a Gtk+ application interacts with octave

2005-07-18 Thread amartinez
Hello: This is what I want to do: I want to rewrite the imshow Octave's command. I want a Gtk+ application to show an image given by octave in this way: gtk_imshow (x, r,c);% the command shows the image x and finished % but the windows is still alive where: x

Re: Question: Making a Gtk+ application interacts with octave

2005-07-18 Thread amartinez
Thank you for the response. I think I haven't been as clear as can bee in my previous mail. I'd like to do this "from Octave" (as a script or in the Octave's command shell): 0. % this is a Octave script: 1. gtk_imshow (x, r,c); 2. pause 3. gtk_imshow (x.*2, r,c); 4. p