Answers for "how to mark plots octave"

0

how to mark plots octave

x = -10:0.1:10;
plot (x, sin (x));
title ("sin(x) for x = -10:0.1:10");
xlabel ("x");
ylabel ("sin (x)");
text (pi, 0.7, "arbitrary text");
legend ("sin (x)");
Posted by: Guest on January-22-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language