Filter löschen
Filter löschen

My graph is blank

1 Ansicht (letzte 30 Tage)
Kevin Chapman
Kevin Chapman am 30 Jan. 2019
Beantwortet: Star Strider am 30 Jan. 2019
The function is n=(m-10)/m for 0(less thab or equal to)m(less than or equal to)5
>> m=0:0.1:5;
>> n=(m-10)/m;
>> plot(m,n);

Akzeptierte Antwort

Star Strider
Star Strider am 30 Jan. 2019
You need to use element-wise division:
m=0:0.1:5;
n=(m-10)./m;
plot(m,n);
Replace / with ./ (note the dot operator), and it works.
See the documentation section on Array vs. Matrix Operations (link) for an extended discussion.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by