- #1
- 16
- 0
Ok, I can plot a single polynomial easy enough such as 3*(x^2)-1 using fplot, but I want to graph multiple polynomials.
When I try to use the plot it doesn't work even for one though. The graph is completely wrong.
ie I make a new m-file.
x = [-1:1];
y = 3*x.^2 - 1;
Then call the m-file in the command window.
Then plot(x,y,'-b')
But I get something resembling the absolute value of x instead
When I try to use the plot it doesn't work even for one though. The graph is completely wrong.
ie I make a new m-file.
x = [-1:1];
y = 3*x.^2 - 1;
Then call the m-file in the command window.
Then plot(x,y,'-b')
But I get something resembling the absolute value of x instead