Dear Tatsuro,

Many thanks for your help.
What you advised for my stand alone 3.2.4 Octave version has simply
worked very well!

pkg rebuild -noauto oct2mat

Did the job, and I could check oct2mat auto-loading with :

pkg list

I have been less lucky with my cygwin 3.2.4 Octave version.
Despite the link you pointed out seems to match my problem there must
be something else since I already use :
libqhull_5-2009.1.1-1
therefore my problem does not come from 2010.1-1

I will keep checking with cygwin staff.
Many thanks again for your help,

Regards,
Bagvian


2010/10/19 Tatsuro MATSUOKA <[email protected]>:
> Hello
>
> Concerning cygwin version octave, it is better to ask at cygwin ML but not 
> here.
> Software distributed on cygwin official site is supported by the maintainer 
> of the cygwin staff.
>
> http://old.nabble.com/Packaging-error-with-Octave-3.2.4--td29615486.html#a29615486
>
> However, Marco (octave for cygwin maintainer ) have updated the runtime 
> libraries the origin.
> The problem is solved.
>
>  figure(1);plot(randn(10));
>
> worked for me using octave-3.2.4 for cygwin.
> If you have updated all dependencies octave by the cygwin setup and you met 
> the error, I cannot help
> you.
>
>
> For standalone port, perhaps you met the oct2mat issue.
> Please see
>
> http://wiki.octave.org/wiki.pl?OctaveForWindows
> 1. Standalone ports
>  1.1. Octave 3.2.4 for Windows MinGW32
>  Additional important topics found after the release:
> In short, execute
>
> pkg rebuild -noauto oct2mat
>
> at the octave prompt and then restart octave and execute
>
> pkg list
>
> and confirm the oct2mat is not auto-loaded.
>
> On my PC (windows XP), on which the above treatment has done, the below 
> worked without problem,
>> octave-3.2.4.exe:2> figure(1);plot(randn(10));
>> octave-3.2.4.exe:3> figure(2);plot(randn(10));
>
>
> Hope the above help for you.
>
> Regards
>
> Tatsuro
>
> --- bagvian wrote:
>
>> Dear all,
>>
>> I have been facing the same kind of plotting problems since I
>> installed Octave 4.2.4.
>> I am on a Win XP system.
>> I have got both a stand alone 4.2.4 version of octave for Win and the
>> same version running within cygwin.
>> In both cases I have got plotting problems :
>>
>> Under cygwin, I encounter the same problem than previously described by Teju 
>> :
>>
>> octave:1> figure(1);plot(randn(10));
>>       1 [main] octave-3.2.4 5760 exception::handle: Exception:
>> STATUS_ACCESS_VIOLATION
>>     611 [main] octave-3.2.4 5760 open_stackdumpfile: Dumping stack
>> trace to octave-3.2.4.exe.stackdump
>>       1 [main] octave-3.2.4 3524 exception::handle: Exception:
>> STATUS_ACCESS_VIOLATION
>>    4029 [main] octave-3.2.4 3524 open_stackdumpfile: Dumping stack
>> trace to octave-3.2.4.exe.stackdump
>>       1 [main] octave-3.2.4 3032 exception::handle: Exception:
>> STATUS_ACCESS_VIOLATION
>>     583 [main] octave-3.2.4 3032 open_stackdumpfile: Dumping stack
>> trace to octave-3.2.4.exe.stackdump
>>       1 [main] octave-3.2.4 4988 exception::handle: Exception:
>> STATUS_ACCESS_VIOLATION
>>     545 [main] octave-3.2.4 4988 open_stackdumpfile: Dumping stack
>> trace to octave-3.2.4.exe.stackdump
>>       1 [main] octave-3.2.4 5804 exception::handle: Exception:
>> STATUS_ACCESS_VIOLATION
>>     501 [main] octave-3.2.4 5804 open_stackdumpfile: Dumping stack
>> trace to octave-3.2.4.exe.stackdump
>>       1 [main] octave-3.2.4 5332 exception::handle: Exception:
>> STATUS_ACCESS_VIOLATION
>>     719 [main] octave-3.2.4 5332 open_stackdumpfile: Dumping stack
>> trace to octave-3.2.4.exe.stackdump
>>       1 [main] octave 1384 fork: child -1 - died waiting for longjmp
>> before initialization, retry 0, exit code 0x600, errno 11
>> error: popen2: process creation failed -- Resource temporarily
>> unavailable
>> error: called from:
>> error:   /usr/share/octave/3.2.4/m/plot/__gnuplot_open_stream__.m at
>> line 28, column 44
>> error:   /usr/share/octave/3.2.4/m/plot/gnuplot_drawnow.m at line 85,
>> column 19
>> octave:2>
>>
>> Scarring!
>> On the stand alone 4.2.4 version for Windows I get something different :
>> If I do :
>> octave-3.2.4.exe:1> figure(1);plot(randn(10));
>> warning: isstr is obsolete and will be removed from a future version
>> of Octave, please use ischar instead
>> octave-3.2.4.exe:2>
>>
>> I only get this warning message and nothing is displayed (no any plot
>> around even when checking with the task manager!).
>> Now, I call back the command line and run it again :
>> octave-3.2.4.exe:2> figure(1);plot(randn(10));
>> octave-3.2.4.exe:3>
>>
>> This time, Figure 1 pops out and random lines are drawn.
>> Unfortunately, Figure 1 does not respond (Not Responding) and for
>> example I cannot zoom or do anything with it.
>> >From there, if I want to display something else on figure 2, I do:
>> octave-3.2.4.exe:3> figure(2);plot(randn(10));
>> octave-3.2.4.exe:4>
>>
>> Nothing happens, but I get back the control on Figure 1! I can zoom and so 
>> on...
>> If I call again Figure 2 :
>> octave-3.2.4.exe:4> figure(2);plot(randn(10));
>> octave-3.2.4.exe:5>
>>
>> I get a plot on Figure 2 but not its control (Not Responding).
>> I nevertheless keep the control on Figure 1.
>>
>> Therefore I cannot use none of my Octave version 4.2.4 for plotting. I
>> went back to a 4.2.3 stand alone version that works well.
>> Any suggestion about this problem?
>> Many thanks in advance, B.
>>
>>
>>
>> On 19 May 2010 03:44, Teju <[email protected]> wrote:
>> >
>> > Hi,
>> > thanks for the response - I got the stand alone version of octave and it
>> > plots fine.
>> > Teju
>> >
>> >
>> > Tatsuro MATSUOKA-2 wrote:
>> >>
>> >> Hello
>> >>
>> >> You use the windows vista.
>> >> However path names in error message is unixy and the xterm is used.
>> >>
>> >>
>> >> Do you use the cygwin version octave?
>> >>
>> >> If so,it is better to ask at the cygwin ML but not here.
>> >>
>> >> Regards
>> >>
>> >> Tatsuro
>> >> --- Teju wrote:
>> >>
>> >>>
>> >>> Hi
>> >>> Each time I try the plot function, I get :
>> >>>
>> >>>       3 [main] octave-3.2.4 4172 exception::handle: Exception:
>> >>> STATUS_ACCESS_VIOLATION
>> >>>    1515 [main] octave-3.2.4 4172 open_stackdumpfile: Dumping stack trace
>> >>> to
>> >>> octave-3.2.4.exe.stackdump
>> >>>       3 [main] octave-3.2.4 4904 exception::handle: Exception:
>> >>> STATUS_ACCESS_VIOLATION
>> >>>    1417 [main] octave-3.2.4 4904 open_stackdumpfile: Dumping stack trace
>> >>> to
>> >>> octave-3.2.4.exe.stackdump
>> >>>       3 [main] octave 5768 child_copy: linked dll data write copy failed,
>> >>> 0x39B000..0x39B86C, done 0, windows pid 5816, Win32 error 487
>> >>> error: popen2: process creation failed -- Resource temporarily
>> >>> unavailable
>> >>> error: called from:
>> >>> error:   /usr/share/octave/3.2.4/m/plot/__gnuplot_open_stream__.m at line
>> >>> 28, column 44
>> >>> error:   /usr/share/octave/3.2.4/m/plot/gnuplot_drawnow.m at line 85,
>> >>> column
>> >>> 19
>> >>>
>> >>> I am on Vista, Core2 Duo.
>> >>>
>> >>> This happens 80% of the time from xTerm. If I use startx however, and use
>> >>> the xterm on that, issue happens less frequently (70%) of the time. I am
>> >>> using GNUPLOT version 4.2.4-1.
>> >>>
>> >>> thanks
>> >>>
>> >>>
>> >>> --
>> >>> View this message in context:
>> >>> http://old.nabble.com/Issues-with-plot-on-3.2.4-tp28599709p28599709.html
>> >>> Sent from the octave-dev mailing list archive at Nabble.com.
>> >>>
>> >>>
>> >>> ------------------------------------------------------------------------------
>> >>>
>> >>> _______________________________________________
>> >>> Octave-dev mailing list
>> >>> [email protected]
>> >>> https://lists.sourceforge.net/lists/listinfo/octave-dev
>> >>>
>> >>
>> >>
>> >> --------------------------------------
>> >> 2010 FIFA World Cup News [Yahoo!Sports/sportsnavi]
>> >> http://pr.mail.yahoo.co.jp/southafrica2010/
>> >>
>> >> ------------------------------------------------------------------------------
>> >>
>> >> _______________________________________________
>> >> Octave-dev mailing list
>> >> [email protected]
>> >> https://lists.sourceforge.net/lists/listinfo/octave-dev
>> >>
>> >>
>> >
>> > --
>> > View this message in context:
>> http://old.nabble.com/Issues-with-plot-on-3.2.4-tp28599709p28603354.html
>> > Sent from the octave-dev mailing list archive at Nabble.com.
>> >
>> >
>> > ------------------------------------------------------------------------------
>> >
>> > _______________________________________________
>> > Octave-dev mailing list
>> > [email protected]
>> > https://lists.sourceforge.net/lists/listinfo/octave-dev
>> >
>>
>> ------------------------------------------------------------------------------
>> Download new Adobe(R) Flash(R) Builder(TM) 4
>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly
>> Flex(R) Builder(TM)) enable the development of rich applications that run
>> across multiple browsers and platforms. Download your free trials today!
>> http://p.sf.net/sfu/adobe-dev2dev
>> _______________________________________________
>> Octave-dev mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/octave-dev
>>
>
>
> --------------------------------------
> Get the new Internet Explorer 8 optimized for Yahoo! JAPAN
> http://pr.mail.yahoo.co.jp/ie8/
>

------------------------------------------------------------------------------
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
_______________________________________________
Octave-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to