Hi all, can anyone please help to create code for the condition bellow

1 次查看(过去 30 天)
x = 10:20:200
y = 0.1:0.08:1
[X,Y] = meshgrid(x,y)
I = eye(13,10)
Z = 8.1.*0.7.*X when, X <= 60
else
Z =8.1.*42.*I ,X>60
mesh(X,Y,Z)
figure;
surf(X,Y,Z)
  2 个评论
ARHUM AHMAD
ARHUM AHMAD 2023-4-25
I hope its helpful;
x = 10:20:200
y = 0.1:0.08:1
[X,Y] = meshgrid(x,y)
I = eye(13,10)
Z = [];
for i = 1:12
for j = 1:10
if X(i,j) <= 60
Z(i,j) = 8.1.*0.7.*X(i,j);
else
Z(i,j) =8.1.*42.*I(i,j);
end
end
end
mesh(X,Y,Z)
figure;
surf(X,Y,Z)

请先登录,再进行评论。

采纳的回答

Torsten
Torsten 2023-4-25
移动:Torsten 2023-4-25
x = 10:20:200;
y = 0.1:0.08:1;
[X,Y] = meshgrid(x,y);
Z = zeros(size(X));
Z(X<=60) = 8.1.*0.7.*X(X<=60);
Z(X>60) = 8.1.*42;
mesh(X,Y,Z)
figure;
surf(X,Y,Z)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by