MATLAB: Hello, I am having trouble plotting this graph. Whenever I run the code I get an error that I am not using the plot function correctly or I get a blank graph. I think it may have to do with how I solved the equation for T. Thanks for any help.

plotting

To = 273
Pair = 400000
Vo = .00066667
cp = 1
syms T t
T = To – (Pair*((Vo*((T/To)^(-5/2))) – Vo)/cp)*t;
Eqn = solve(T, t)
t = 0:.001:1;
Teq = Eqn
plot(t,Teq)

Best Answer

You are using the wrong plot function.
Use fplot instead:
fplot(Teq,[0 1])
xlabel('t')
ylabel('Teq')
EDIT — (27 Sep 2020 at 18:04)
Added plot image —
.
Related Question