How do I plot the following polynomial?

i need to develop a plot of cp versus a range of T = 0 to 1200 K, and then use bisection to determine the temperature that corresponds to a specific heat of 1.1 kJ/(kg K). The polynomial can be seen below. I appreciate if anyone can help.

 採用された回答

Setsuna Yuuki.
Setsuna Yuuki. 2020 年 11 月 17 日
編集済み: Setsuna Yuuki. 2020 年 11 月 17 日

1 投票

With loop
for t=1:1200
Cp(t) = 0.99403+1.671*10e-4*t+ ... % all function
end
t=1:1200;
plot(t,cp)

1 件のコメント

Boran Kolcu
Boran Kolcu 2020 年 11 月 17 日
Thanks a lot, that worked.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by