Answers for "plot in octave"

0

plot in octave

x = -10:0.1:10;
plot (x, sin (x));
xlabel ("x");
ylabel ("sin (x)");
title ("Simple 2-D Plot");
Posted by: Guest on October-13-2021

Browse Popular Code Answers by Language