help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gnuplot zoom not functioning anymore in octave 2.9.10


From: Daniel Oberhoff
Subject: Re: gnuplot zoom not functioning anymore in octave 2.9.10
Date: Wed, 4 Apr 2007 15:58:22 +0200

Ok, and how about zooming? Also missing that functionality here :) (and it works in matlab...).

Daniel

Am 04.04.2007 um 12:32 schrieb David Bateman:

address@hidden wrote:
Hello,

until version 2.9.9, it was possible to enable zoom with the
"set mouse" command (e.g. in ~/.gnuplot). After changing to
version 2.9.10, this does not function anymore. Further, by default,
no legend is created and all plots generated without options have
the same color/style now.
Maybe these are new features - but how to activate the old behaviour?
It would cost a lot of work to change all the working scripts...


Yes these are the matlab compatible behaviors... There is also no easy
way to get the old behaviors, as the legend command has no default
legend (eg 'line 1') set as previously. Therefore legend('show') won't
give you what you want. The same applies for the color/style. To get
something similar you'll need to do something like

nline = 1;
plot(x1,y1,sprintf('%d;line%d;', nline, nline++))
hold on
plot(x2,y2,sprintf('%d;line%d;', nline, nline++))

etc..

Regards
David


--
David Bateman address@hidden
Motorola Labs - Paris                        +33 1 69 35 48 04 (Ph)
Parc Les Algorithmes, Commune de St Aubin    +33 6 72 01 06 33 (Mob)
91193 Gif-Sur-Yvette FRANCE                  +33 1 69 35 77 01 (Fax)

The information contained in this communication has been classified as:

[x] General Business Information
[ ] Motorola Internal Use Only
[ ] Motorola Confidential Proprietary

_______________________________________________
Help-octave mailing list
address@hidden
https://www.cae.wisc.edu/mailman/listinfo/help-octave



reply via email to

[Prev in Thread] Current Thread [Next in Thread]