Hello, I am having trouble plotting this graph. Whenever I run my 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 my equation for T. Thanks for any help.
조회 수: 1 (최근 30일)
이전 댓글 표시
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)
댓글 수: 2
채택된 답변
Star Strider
2020년 9월 27일
편집: Star Strider
2020년 9월 27일
You are using the wrong plot function.
fplot(Teq,[0 1])
xlabel('t')
ylabel('Teq')
EDIT — (27 Sep 2020 at 18:04)
Added plot image —
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/367264/image.png)
.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!