Clear Filters
Clear Filters

How to create the 3D mesh plot in Simulink

2 views (last 30 days)
I am having simple m-code ..
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
figure(1)
mesh(Z)
and it displays
I want to do it in Simulink - Is it possible to do 3D mesh in SImulink - how?

Answers (0)

Categories

Find more on Simulink in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!