Surf plot using meshgrid

1 次查看(过去 30 天)
Hello everybody,
I have a set of snr values for defects in a concrete specimen for different depths as attached in excel sheet. I used the wavelet method to analyze them into several levels.
Anyhow, I need them to be plotted into 3D by using the command surf. Would snybody help me with that?
Thank you in advance.
  2 个评论
Rik
Rik 2019-9-23
What have you already tried? Have you read the doc for the surf function?
Mohanned Al Gharawi
I'm trying to plot a 3D x-axis represents the defect depths, y-axis is the levels and the z-direction has the values of snr.
Thanks

请先登录,再进行评论。

采纳的回答

Shubham Gupta
Shubham Gupta 2019-9-24
Try this :
snr_data = xlsread('snr values.xlsx');
depth = [1,2,3,5];
level = 1:7;
depth_mesh = meshgrid(depth,level).';
level_mesh = meshgrid(level,depth);
surf(depth_mesh,level_mesh,snr_data)
I hope it helps !

更多回答(1 个)

Mohanned Al Gharawi
Thank you so much, it worked.

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by