採用された回答

Akira Agata
Akira Agata 2019 年 12 月 4 日

1 投票

Straight-foward solution would be like this:
x = linspace(0,5);
y = linspace(0,2);
[xGrid, yGrid] = meshgrid(x,y);
zGrid = yGrid.*xGrid;
idx = xGrid./2 < yGrid;
zGrid(idx) = nan;
figure
surf(xGrid,yGrid,zGrid)

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2019 年 12 月 4 日

回答済み:

2019 年 12 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by