Hello, I have a question. I am trying to solve a optimization problem but my function has 3 variables and I am not sure how to plot a 3d diagram of 3 variable function.

 채택된 답변

KSSV
KSSV 2021년 5월 3일

1 개 추천

Read about surf.

댓글 수: 5

Sanket Sutar
Sanket Sutar 2021년 5월 3일
편집: Sanket Sutar 2021년 5월 3일
I forgot to mention the objective function is a nonlinear equation with three variables. Will surf function work? Thank you.
KSSV
KSSV 2021년 5월 3일
What ever the function is...if you have matrix at the end, you can use surf.
Sanket Sutar
Sanket Sutar 2021년 5월 4일
Hello KSSV, I read and tried using surf but can't seem to figure it out. I am very new to MATLAB.
And this is my function - (x+5).^2+(y+8).^2+(z+7).^2+(2.*x.^2.*y.^2)+(4.*x.^2.*z.^2);
Can you please point me in the right direction?
KSSV
KSSV 2021년 5월 4일
m = 10 ;
x = linspace(0,1,m) ;
y = linspace(0,1,m) ;
z = linspace(0,1,m) ;
[x,y,z] = meshgrid(x,y,z) ;
f = (x+5).^2+(y+8).^2+(z+7).^2+(2.*x.^2.*y.^2)+(4.*x.^2.*z.^2);
figure
hold on
for i = 1:size(f,3)
surf(x(:,:,i),y(:,:,i),z(:,:,i),f(:,:,i)) ;
end
view(3)
Read about slice.
Sanket Sutar
Sanket Sutar 2021년 5월 5일
Thank you so much for your help !!!

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

추가 답변 (0개)

카테고리

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

질문:

2021년 5월 3일

댓글:

2021년 5월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by