How to normalize surf plots?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Athira T Das
el 2 de Jun. de 2023
Respondida: Sam Chak
el 2 de Jun. de 2023
syms x y
x0 = -.5:0.001:.5;
y0 = x0;w0=0.05;
[X0,Y0] = meshgrid(x0,y0);
omegax=2
omegay=omegax;
f = @(x0,y0)sinh((omegax*x0+omegay*y0)/w0) ;
surf (X0,Y0,abs(f(X0,Y0)) )
shading interp
0 comentarios
Respuesta aceptada
Sam Chak
el 2 de Jun. de 2023
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!