how to write this equation ?
7 ビュー (過去 30 日間)
古いコメントを表示
what's the mistake with my code
T=linspace(100,1,10)
mu = @(T) 0.001.*(0.2414.*10.^(247.8./((T-273)+68.12963)));
Error: Unexpected MATLAB expression.
please help me
4 件のコメント
KALYAN ACHARJYA
2018 年 7 月 27 日
I have edited the code and attached the results too, Are you looking for this one? Pls confirm
Walter Roberson
2018 年 7 月 27 日
Can you attach the .m file that contains the code? I am wondering if there are some hidden characters.
Also, if the line before the assignment to T was a continuation line ending in ... then the assignment could be a syntax error.
採用された回答
KALYAN ACHARJYA
2018 年 7 月 27 日
編集済み: KALYAN ACHARJYA
2018 年 7 月 27 日
Its OK, no error
T=linspace(100,1,10)
mu=(0.001.*(0.2414.*10.^(247.8./((T-273)+68.12963))))
その他の回答 (2 件)
Mark Saad
2018 年 7 月 27 日
T = linspace (100, 1, 10);
mu = @(t) 0.001 .* (0.2414 * 10.^(247.8./((t - 273) + 68.12963)));
mu(T)

0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
