mathematical model into matlab
1 回表示 (過去 30 日間)
古いコメントを表示
how can i write the following mathematical model in MATLAB and get answer of (q) for any value of (t) that i want to put in
q(t)= (6.25* 10^9)/(t+500)^3
0 件のコメント
回答 (2 件)
Walter Roberson
2020 年 5 月 6 日
編集済み: Walter Roberson
2020 年 5 月 6 日
q = @(t) (6.25* 10^9)./(t+500).^3
This will work for vectors or arrays of t.
5 件のコメント
Walter Roberson
2020 年 5 月 6 日
Indeed you did email me, but I always assume that email is confidential unless the sender says otherwise. It would not be proper for me to respond in public to confidential information.
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!