Info

This question is closed. Reopen it to edit or answer.

please can any one help me , i write a code but when i select plot i dont have any figure :/ :/ this is my code

1 view (last 30 days)
#
mp=0:100:1000;
T=[];
T=[T;mp/(((7*mp)-1)/6)];
plot(mp,T);
#

Answers (2)

Walter Roberson
Walter Roberson on 25 May 2015
You need to use ./ instead of /
T = mp./(((7*mp)-1)/6);

Andrei Bobrov
Andrei Bobrov on 25 May 2015
mp=0:100:1000;
T=6*mp./(7*mp-1);
plot(mp,T)

Tags

No tags entered yet.

Products

Community Treasure Hunt

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

Start Hunting!