help-octave
[Top][All Lists]
Advanced

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

Re: Zooming on Windows


From: Tatsuro MATSUOKA
Subject: Re: Zooming on Windows
Date: Tue, 11 Jan 2011 07:23:27 +0900 (JST)

Hello

Please post 
test.csv
to try to reproduce the phenomenon.

Regards

Tatsuro 
--- Jean LEE  wrote:

> Hi everybody,
> 
> I just started to use Octave (3.2.4 on Windows). Very happy, I can import
> easily datas from my .csv files into matrix and plot them (with subplots).
> But how to zoom ?
> 
> I searched on the web and found that someone is recommending to use wxt. It
> does work for one plot in a figure (even if it's frozen when I press the
> keyboard, I can use widgets) but not for several subplots in one figure. I
> just can't do anything.
> 
> According to the following code, does anybody knows what I did wrong?
> 
> Thank you for your answers.
> 
> Jean
> 
> test.m :
> 
> % For zoom functions
> putenv("GNUTERM","wxt")
> 
> cd D:\WORK\Projects\SVN\Characterisation
> H=dlmread('test.csv',',')
> A=H(:,[1:3])
> B=H(:,[4:6,10])
> C=H(:,[7:9,10]);
> D=H(:,11)
> E=H(:,12)
> F=H(:,[13:14])
> 
> figure()
> subplot(2,2,1)
> plot(A)
> title ("A")
> subplot(2,2,2)
> plot(B)
> title ("B")
> subplot(2,2,3)
> plot(C)
> title ("C")
> subplot(2,2,4)
> plot(D)
> title ("D")
> 
> figure()
> subplot(2,1,1)
> plot(E)
> title ("E")
> subplot(2,1,2)
> plot(F)
> title ("F")
> > _______________________________________________
> Help-octave mailing list
> address@hidden
> https://mailman.cae.wisc.edu/listinfo/help-octave
> 


--------------------------------------
Get the new Internet Explorer 8 optimized for Yahoo! JAPAN
http://pr.mail.yahoo.co.jp/ie8/


reply via email to

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