필터 지우기
필터 지우기

How to create the 3D mesh plot in Simulink

조회 수: 2 (최근 30일)
Jack Daniels
Jack Daniels 2022년 11월 10일
답변: Amith 2024년 8월 11일 5:20
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?

답변 (1개)

Amith
Amith 2024년 8월 11일 5:20
Hi Jack,
Creating a 3D mesh directly in Simulink isn’t possible, as Simulink is primarily used for modeling, simulating, and analyzing dynamic systems. However, you can integrate MATLAB with Simulink to achieve this. Here’s a general approach:
  1. Create the 3D Mesh in MATLAB: Use MATLAB functions like the one used above to create a 3D Mesh.
  2. Integrate with Simulink: Use the MATLAB Function block in Simulink to call your MATLAB code that generates the 3D mesh.
Learn more about MATLAB Function block by clicking on the link below: https://www.mathworks.com/help/releases/R2022b/simulink/ug/what-is-a-matlab-function-block.html
Hope this helps!

카테고리

Help CenterFile Exchange에서 General Applications에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by