Converting 3D plot into surface like plot.
3 次查看(过去 30 天)
显示 更早的评论
Hi everyone ! I have a data on Total Number of Aircraft in each Hour in the Month of January. I have already plot the 3D plot using plot3 function (X axis = Day , Y axis = Hour, Z axis = Number of Aircraft) but now I want to convert it to surface like plot. Is it possible? anyone know how? Hope anyone could help :D thank you.

The image above is my data table.

The image above is my plot3 code.

The image above is the plot. See that, by convert it into surface, I can better understand the trend.
0 个评论
回答(1 个)
madhan ravi
2020-7-11
[DAY, HOUR] = meshgrid(Day, Hour);
NUMAIRCRAFT = repmat(numAircraft, 1,numel(Day));
surf(DAY, HOUR, NUMAIRCRAFT)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!