Plot of Quadratic Equation coming out Linear...What do I do??? Emergency
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lauren
el 4 de Mzo. de 2014
Editada: Roger Stafford
el 4 de Mzo. de 2014
Here is my plot code
clear all
x=[-10:1:10];
y1=-x+x.^2/(1+x.^2);
y2=-.5*x + x.^2/(1+x.^2);
y3=-.2*x+x.^2/(1+x.^2);
plot(x,y1,'r',x,y2,'b',x,y3,'g')
It should look like three different versions of a differential curve with increasing parameter values, but all three plots come out linear. Looks correct on another graphing site. What am I doing wrong?
0 comentarios
Respuesta aceptada
Roger Stafford
el 4 de Mzo. de 2014
Editada: Roger Stafford
el 4 de Mzo. de 2014
Try putting a dot on your division symbols:
y1=-x+x.^2./(1+x.^2);
As you have it the division is matlab's matrix division which in this case gives a scalar value, hence the linear appearance.
See
http://www.mathworks.com/help/matlab/ref/mrdivide.html
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!