help-octave
[Top][All Lists]
Advanced

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

Re: plot graphics line


From: Kai Torben Ohlhus
Subject: Re: plot graphics line
Date: Fri, 19 Oct 2018 20:51:02 +0200

On Fri, Oct 19, 2018 at 2:40 PM turbofib <address@hidden> wrote:
hi
i want to plot line as pics

https://gyazo.com/f5df3d311459af7fb90d7e66d0d47f02

i read manual octave about plot but i don't see it





--
Sent from: http://octave.1599824.n4.nabble.com/Octave-Maintainers-f1638794.html


You probably want to plot a "stem graph" [1]:

>> x = 1:10;
>> y = 2*x;
>> stem (x, y, "r");

Please make use of the help mailing list "address@hidden" for usage questions, rather than the maintainers mailing "address@hidden" list, which is intended for development discussions.

HTH,
Kai


reply via email to

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