HOW TO CODE AND PLOT EQUATION
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I tried to code and plot this Midilli equation but it keep on saying “subscript indices must either be real positive integers or logicals”. I need to plot those decimals but i dont know how
a= 1.1143 k= 0.1791 n= 0.3215 b= 0.00321 t = 11 mins
MR = a•exp(-k(t^n))+b•t
1 Kommentar
Antworten (1)
Ameer Hamza
am 7 Dez. 2020
You are missing multiplication operator between 'k' and t^n.
MR = a*exp(-k*(t^n))+b*t
5 Kommentare
Walter Roberson
am 7 Dez. 2020
at the command line give the command
clearvars
and then run the code again
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!