How could I plot y=(x-2)/(2x+3)?
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (2)
Richard Kadar-Nemeth
le 3 Déc 2016
0 votes
1 commentaire
Star Strider
le 3 Déc 2016
My pleasure.
Leaving a space between the dot and the operator will throw an ‘Unexpected MATLAB operator.’ error.
Bhargav k
le 8 Oct 2020
0 votes
Plot the graph of y = x^2 − 2x − 3.
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!