help-octave
[Top][All Lists]
Advanced

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

Re: Plot


From: siko1056
Subject: Re: Plot
Date: Mon, 14 Aug 2017 01:35:15 -0700 (PDT)

Marie wrote
> Can anybody help me with this plot?
> I am a beginner in octave . 
> How can I do this?
> 
> x = sin(-b)+b, y=2-cos(-b), 5≤ b≤ 6pi

I hope not to spoil a homework assignment:

b = linspace (5, 6*pi, 1000);
x = sin (-b) + b;
y = 2 - cos (-b);
plot (x, y)

HTH,
Kai



--
View this message in context: 
http://octave.1599824.n4.nabble.com/Plot-tp4684440p4684443.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

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