In scilab how do you plo sin as curve rather than as straight lines?
x=[0,90,180,270,360]
// sind is sin with argument of degrees. rather than radians.
// https://help.scilab.org/docs/5.5.2/en_US/sind.html
y=sind(x)
plot(x,y)
But I want something more like
i.e. a curve rather than straight lines.
What about using more points to draw the curve (increase x by 1, not 90)? – Máté Juhász – 2019-10-15T15:44:46.653
@MátéJuhász ah you're right
x=[0:1:360]
Now I just wonder how to get the intersection of x=y=0 – barlop – 2019-10-15T16:17:04.9671@MátéJuhász you can post your answer and I will accept it. This works, increases by 1 up to 360.
x=[0:1:360]
(as for the x=y=0 thing i've taken it out of the question and will make a separate question for it) – barlop – 2019-10-15T22:50:16.223