Surf plot using meshgrid

3 visualizaciones (últimos 30 días)
Mohanned Al Gharawi
Mohanned Al Gharawi el 23 de Sept. de 2019
Respondida: Mohanned Al Gharawi el 24 de Sept. de 2019
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 comentarios
Rik
Rik el 23 de Sept. de 2019
What have you already tried? Have you read the doc for the surf function?
Mohanned Al Gharawi
Mohanned Al Gharawi el 23 de Sept. de 2019
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

Iniciar sesión para comentar.

Respuesta aceptada

Shubham Gupta
Shubham Gupta el 24 de Sept. de 2019
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 !

Más respuestas (1)

Mohanned Al Gharawi
Mohanned Al Gharawi el 24 de Sept. de 2019
Thank you so much, it worked.

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by