Why is my graph coming out blank when i try and plot this code?
조회 수: 1 (최근 30일)
이전 댓글 표시
x=[0.1:0.1:5];
y=(sin(x))/x;
figure(2)
grid on
plot(x,y)
댓글 수: 0
답변 (2개)
Brian Hart
2019년 2월 23일
It's an error in your calcuation of y. Check the size and you'll see it's coming out as a scalar. Replace "/" with "./", since you want element-wise division.
댓글 수: 0
Star Strider
2019년 2월 23일
Because you are calculating a single point.
If you use element-wise division here (using ./ rather than /), you get the plot you expect:
x=[0.1:0.1:5];
y=(sin(x))./x;
figure(2)
grid on
plot(x,y)
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!