|
From: | marco atzeri |
Subject: | Re: plotting problems. |
Date: | Fri, 26 Apr 2013 21:51:18 +0200 |
User-agent: | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130328 Thunderbird/17.0.5 |
On 4/26/2013 9:38 PM, Kirk wrote:
I am trying to plot the values of division and I know something is not right. I have a scalar value and then try to divide by a matrix of time t1 but I get no graph in plot and when I type int he octave window the value I ma wanting to plot i get only a scalar value instead of a matrix. any ideas here is the code. Qg = 5.13e-15; for t1 = 0.1e-9:0.2e-9:3e-9 hold on; igp = Qg./t1; plot(t1, igp); hold off;
Qg = 5.13e-15; t1 = 0.1e-9:0.2e-9:3e-9 igp = Qg./t1; plot(t1, igp); works fine for me with gnuplot
Thanks for the help Kirk
Marco
[Prev in Thread] | Current Thread | [Next in Thread] |