Why is my graph coming out blank when i try and plot this code?

Antworten (2)

Brian Hart
Brian Hart am 23 Feb. 2019

0 Stimmen

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.
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)
See the documentation on Array vs. Matrix Operations (link) for an extended discussion.

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 23 Feb. 2019

Beantwortet:

am 23 Feb. 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by