Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の等高線セットで Matlab の 3D グラフを切り取るにはどうすればよいですか (たとえば、グラフにx^2+y^2はガラスのように明確な上端が必要です)。ありがとう!
x^2+y^2
カットオフより上の値を次のように設定できますnan。
nan
[X,Y] = meshgrid(-100:100,-100:100); Z = X.^2+Y.^2; ind = Z > 10000; Z(ind) = nan; mesh(X,Y,Z)