please can any one help me , i write a code but when i select plot i dont have any figure :/ :/ this is my code
Info
This question is closed. Reopen it to edit or answer.
Show older comments
#
mp=0:100:1000;
T=[];
T=[T;mp/(((7*mp)-1)/6)];
plot(mp,T);
#
Answers (2)
Walter Roberson
on 25 May 2015
You need to use ./ instead of /
T = mp./(((7*mp)-1)/6);
1 Comment
safi marwa
on 25 May 2015
Andrei Bobrov
on 25 May 2015
mp=0:100:1000;
T=6*mp./(7*mp-1);
plot(mp,T)
1 Comment
safi marwa
on 25 May 2015
This question is closed.
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!