How could I plot y=(x-2)/(2x+3)?
이전 댓글 표시
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.
채택된 답변
추가 답변 (2개)
Richard Kadar-Nemeth
2016년 12월 3일
0 개 추천
댓글 수: 1
Star Strider
2016년 12월 3일
My pleasure.
Leaving a space between the dot and the operator will throw an ‘Unexpected MATLAB operator.’ error.
Bhargav k
2020년 10월 8일
0 개 추천
Plot the graph of y = x^2 − 2x − 3.
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!