How do I plot this in Matlab?
이전 댓글 표시
I'm trying to plot this equation
log10(P)= A - (B/C+T)
Where P is on the y axis and T is on the x axis. The letters A, B and C vary with each substance and I have the figures for those. I've been trying to figure out how to plot it but am completely lost.
채택된 답변
추가 답변 (1개)
Walter Roberson
2016년 5월 9일
P = 10.^(A - (B./C+T));
plot(T, P)
카테고리
도움말 센터 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!