Integration problem for a scalar
3 ビュー (過去 30 日間)
古いコメントを表示
Thomas Mroczkowski
2020 年 12 月 11 日
回答済み: Walter Roberson
2020 年 12 月 11 日
The code below generates Cp based off my program. Cp is a scalar. How would I write the integral of Cp with respect to Temp2? There are no specific bounds for this integration.
T2=78
A = SH(1,1);
B = SH(1,2);
C = SH(1,3);
Cp = A + (B * T2) + (C * (T2^2));
fun= @(T2)Cp;
DeltaH = integral(fun,0,inf);
0 件のコメント
採用された回答
Walter Roberson
2020 年 12 月 11 日
syms T2
A = SH(1,1);
B = SH(1,2);
C = SH(1,3);
Cp = A + (B * T2) + (C * (T2^2));
int(Cp, T2)
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!