Face Error "Input arguments must be numeric or objects which can be converted to double' while plotting Contour

조회 수: 19 (최근 30일)
S11 =@(x1,x2)(262144*x2*((25*x1^2)/2-75000*x1+75000000))/5592405333333333
x1=0:6000;
x2= 0:800;
contour(x1,x2,S11)

채택된 답변

VBBV
VBBV 2024년 3월 17일
편집: VBBV 2024년 3월 17일
contour(x1,x2,S11(x1,x2))
  댓글 수: 6
VBBV
VBBV 2024년 3월 17일
use meshgrid function
S11 = @(x1,x2) (262144*x2.*((25*x1.^2)/2-(75000*x1)+75000000))/5592405333333333;
x1=0:6000;
x2= 0:800;
[X1 X2] = meshgrid(x1,x2);
contour(X1,X2,S11(X1,X2))

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by