Children command for setting a plot
Show older comments
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);
Answers (1)
Walter Roberson
on 5 Sep 2013
0 votes
Use triscatteredinterp to a grid and contour the grid. or its new replacement which can be used more directly.
Categories
Find more on Contour Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!