How can I remove this projection from Matlab plot?

Hi, dears.
I would like to remove this projection (the circles in the bottom) from the below figure. Is there any command to remove it?

3 个评论

That depends on what command(s) you used to put it there in the first place. Looks like a contour plot was accidentally super-imposed on the surf plot with "hold on".
@Matt J I did not used hold on, sir.
I used the following piece of code
P_rec_dBm_BW = P_rec_dBm - P_rec_dBm_1;
meshc(X_r,Y_r,P_rec_dBm_BW)
colorbar
xlabel('X (m)');
ylabel('Y (m)');
zlabel('Difference in Received power (dB)');
axis([-L/2 L/2 -W/2 W/2 min(min(P_rec_dBm_BW)) max(max(P_rec_dBm_BW))]);
We can't run that code to see what's going on, because the input variables are not provided.

请先登录,再进行评论。

 采纳的回答

Using mesh(), not using meshc(), will not show the contour.

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by