How to graph this function?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Krish Desai
am 16 Feb. 2016
Beantwortet: Torsten
am 16 Feb. 2016
So I'm trying to graph a function and when I plot the following:
plot(y,(.65*y)-(0.65*y.^2/10.5));
It works fine but when I add in the second part of the equation there's an error that I don't know how to fix
plot(y,(.65*y)-(0.65*y.^2/10.5))-(((1.2*(y^2))/(1+(y^2))));
0 Kommentare
Akzeptierte Antwort
Torsten
am 16 Feb. 2016
plot(y,(.65*y)-(0.65*y.^2/10.5))-(((1.2*(y.^2))./(1+(y.^2))));
Best wishes
Torsten.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!