フィルターのクリア

how to loop a equation.

1 回表示 (過去 30 日間)
surawut.A
surawut.A 2021 年 8 月 22 日
コメント済み: darova 2021 年 8 月 23 日
guys, I need some help
D==0.27*(1.04/-0.22)*exp((-246)/(R*T))
R=8.314
T=[600:50:800]
I want to loop a data above to find D with different T.
and if I want to use data D, can I use D symbol?
thank you for helping me, im new

採用された回答

Wan Ji
Wan Ji 2021 年 8 月 22 日
Why use symbol?
R=8.314;
T=[600:50:800];
D=0.27*(1.04/-0.22)*exp((-246)./(R*T))
The D array is good to use
D =
-1.214947318228101 -1.219564871571260 -1.223536739934003 -1.226989487755193 -1.230018633832494
  3 件のコメント
Wan Ji
Wan Ji 2021 年 8 月 22 日
編集済み: Wan Ji 2021 年 8 月 22 日
My pleasure having helped you!
darova
darova 2021 年 8 月 23 日

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by