How to normalize surf plots?

7 次查看(过去 30 天)
syms x y
x0 = -.5:0.001:.5;
y0 = x0;w0=0.05;
[X0,Y0] = meshgrid(x0,y0);
omegax=2
omegax = 2
omegay=omegax;
f = @(x0,y0)sinh((omegax*x0+omegay*y0)/w0) ;
surf (X0,Y0,abs(f(X0,Y0)) )
shading interp

采纳的回答

Sam Chak
Sam Chak 2023-6-2
Are you looking for a plot with normalized output?
syms x y
x0 = -.5:0.001:.5;
y0 = x0;
w0 = 0.05;
[X0,Y0] = meshgrid(x0,y0);
omegax = 2;
omegay = omegax;
scale = 1/(sinh((omegax*0.5 + omegay*0.5)/w0));
f = @(x0, y0) scale*sinh((omegax*x0 + omegay*y0)/w0);
surf (X0,Y0,abs(f(X0,Y0)) )
shading interp

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Computational Geometry 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by