Effacer les filtres
Effacer les filtres

How do I plot the following polynomial?

2 vues (au cours des 30 derniers jours)
Boran Kolcu
Boran Kolcu le 17 Nov 2020
Commenté : Boran Kolcu le 17 Nov 2020
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.

Réponse acceptée

Setsuna Yuuki.
Setsuna Yuuki. le 17 Nov 2020
Modifié(e) : Setsuna Yuuki. le 17 Nov 2020
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 commentaire
Boran Kolcu
Boran Kolcu le 17 Nov 2020
Thanks a lot, that worked.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by