plotting 2 D graph issue
Title
Question
I am getting the following error:
y2=2*x^2;
!
Warning: Syntax "vector ^ scalar" is obsolete. It will be removed in Scilab 6.0.
Use "vector .^ scalar" instead.
Scilab Plotting-2D-graphs 05-06 min 30-40 sec
Answers:
It's not an error, just a warning.
If you want to remove that as well then type,
<span style="background-color: rgb(250, 250, 250);">y2=2.*x.^2;</span>
Login to add comment