help-octave
[Top][All Lists]
Advanced

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

Re: Plot Problem


From: Thomas D. Dean
Subject: Re: Plot Problem
Date: Sun, 6 Aug 2017 12:39:41 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

On 08/06/2017 12:24 PM, Andreas Weber wrote:
Am 06.08.2017 um 21:09 schrieb Thomas D. Dean:
plot([m1;m2]);  ## seems to hang forever
What am I doing wrong?

size of m1 and m2 are both 1x7501

plot([m1;m2]);
would plot 7501 lines! I guess waht you want is
plot([m1,m2]);

-- Andy


Correct.

What the OP wanted was plot(t,[m1;m2]);

Thanks.
Tom Dean



reply via email to

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