HOW TO CODE AND PLOT EQUATION

1 回表示 (過去 30 日間)
korukosheep
korukosheep 2020 年 12 月 7 日
コメント済み: Walter Roberson 2020 年 12 月 7 日
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 件のコメント
Ive J
Ive J 2020 年 12 月 7 日
MR = a*exp( -k*(t^n) ) + b*t; % consider .* in such cases

サインインしてコメントする。

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 12 月 7 日
You are missing multiplication operator between 'k' and t^n.
MR = a*exp(-k*(t^n))+b*t
  5 件のコメント
korukosheep
korukosheep 2020 年 12 月 7 日
I tried to input these values for
a= 1.1143 k= 0.1791 n= 1.3215 b= 0.00321
Walter Roberson
Walter Roberson 2020 年 12 月 7 日
at the command line give the command
clearvars
and then run the code again

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by