Why is my plot not showing anything?
조회 수: 1 (최근 30일)
이전 댓글 표시
x = -3:0.01:5;
y = ((x+5).^2)/(4+3*x.^2);
plot(x,y)
댓글 수: 0
채택된 답변
James Tursa
2018년 2월 1일
Use element-wise division:
y = ((x+5).^2)./(4+3*x.^2);
댓글 수: 2
Image Analyst
2018년 2월 1일
Dustin, you can also thank him by Accepting his answer, and voting for it, to give him reputation points.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!