Children command for setting a plot
Mostrar comentarios más antiguos
Hi everyone,
I have plotted the amplitude of a tide from scatter data and I would like to plot the contour between amplitudes. The problem appears in this step. I cannot use the command contourf because i have no a structured grid and i cannot create one because my scatter data does not have a equal disntance between points. I think (maybe i am wrong) that the command children can be use to identify the limit between amplitudes. Once, i have this limit i can plot it using hold on and the same command that i have used to plot the amplitude
I attach you my command to plot the amplitude(I was extracted from telemac tools)
h=patch('faces',m.IKLE,'vertices',m.XYZ,'FaceVertexCData',m.RESULT(:,VAR), ...
'FaceColor','w','EdgeColor','none','linewidth',0.01);
Respuestas (1)
Walter Roberson
el 5 de Sept. de 2013
0 votos
Use triscatteredinterp to a grid and contour the grid. or its new replacement which can be used more directly.
Categorías
Más información sobre Contour Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!