can ı plot this chart with a given equation?
조회 수: 3 (최근 30일)
이전 댓글 표시

댓글 수: 0
채택된 답변
Alan Stevens
2020년 11월 22일
Here's a starter. You can add the other equations and labelling
V = @(S) 0.349109 + 6.00940*S + 0.047467*S.^2;
S = logspace(-2, 2);
semilogx(S,V(S)),grid
xlabel('Sommerfeld Nbr'),ylabel('Temp Rise Dimensionless Variable')
axis([0.001 10 0 7])
댓글 수: 5
Alan Stevens
2020년 11월 29일
You should be able to pick off several points and fit a quadratic in S to them.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Labels and Styling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!