Stuffing Nan did work on the T-shaped domain, but i need to do this on a Y-shaped domain as well. Is there any other simple ways?
Surf plot without interpolation
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kean Yung
el 7 de Feb. de 2014
Comentada: Kean Yung
el 9 de Feb. de 2014
The x y coordinates of my data formed a T-shaped domain in stead of a rectangular domain.
[X,Y] = meshgrid(x,y);
Z = griddata(x,y,z, X, Y);
surf(X,Y,Z);
Using meshgrid and griddata will produce data out of the domain. How can i create s surf plot without interpolation? Or how to remove the extra data from the plot?
Respuesta aceptada
John D'Errico
el 7 de Feb. de 2014
Stuff NaNs into the elements that are outside the area of interest. That part will not plot.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!