채택된 답변

KSSV
KSSV 2022년 1월 27일

0 개 추천

As you have a single values, you may plot only a single point.
x=5.3;
z= 7.8 ;
iwant = x*z/(x/z)^2+14*x^2-0.8*z^2
iwant = 434.1261
But if you have a vector, you can plot:
x=linspace(2,5.3);
z= linspace(5,7.8) ;
[x,z] = meshgrid(x,z) ;
iwant = x.*z./(x./z).^2+14*x.^2-0.8*z.^2 ;
surf(x,z,iwant)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

제품

릴리스

R2021b

태그

질문:

2022년 1월 27일

답변:

2022년 1월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by