필터 지우기
필터 지우기

How to plot 3D filled contour ?

조회 수: 67 (최근 30일)
Kamran Afroz
Kamran Afroz 2021년 11월 24일
답변: Star Strider 2021년 11월 24일
HI all!
I have a data with Lat*Lon*Levels (i.e. 161*161*18 double) and I want to plot a filled 3-D contour to show variation throughout the levels.
I am getting error for dimensions as dimension should be 2*2.
Can someone help?

답변 (2개)

KSSV
KSSV 2021년 11월 24일
You can plot one level at a time:
for i = 1:18
plot(lon,lat,levels(:,:,i)')
shading interp
drawnow
end
If you want to show variation, you need to decide the plane to display and then plot it. For this you need to use slice. Read about slice.

Star Strider
Star Strider 2021년 11월 24일
It would help to know the data and the desired result.
One option is to use the surf function and contour3
[X,Y,Z] = peaks(50);
figure
surf(X, Y, Z+5, 'EdgeColor','none')
hold on
contour3(X, Y, Z+5, 15, '-k', 'LineWidth',1)
hold off
grid on
xlabel('Latitude (°)')
ylabel('Longitude (°)')
zlabel('Elevation (km)')
There are probably Mapping Toolbox functions that work similarly if that is being used in the data analysis.
.

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by