How could I plot y=(x-2)/(2x+3)?
Ältere Kommentare anzeigen
So far I've got:
x = [-100 : 1 : 100];
y = (x - 2) / (2*x + 3);
plot(x,y, 'r')
grid on, axis equal
When I run it, it brings up the plot but the graph is missing.
Akzeptierte Antwort
Weitere Antworten (2)
Richard Kadar-Nemeth
am 3 Dez. 2016
0 Stimmen
1 Kommentar
Star Strider
am 3 Dez. 2016
My pleasure.
Leaving a space between the dot and the operator will throw an ‘Unexpected MATLAB operator.’ error.
Bhargav k
am 8 Okt. 2020
0 Stimmen
Plot the graph of y = x^2 − 2x − 3.
Kategorien
Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!