CONTOURF AS PATCH COMMAND
Show older comments
Hello,
I have 3 column matrix. I want to plot contourf but plot shape is wrong. When i try with patch command shape is true. How can i do this with contourf? Here is example picture.

here is my patch figure code:
a=load('xyz.txt');
x=a(:,1);
y=a(:,2);
m1=a(:,3);
cor=[x y];
ff=reshape( 1:length(cor), 4, length(cor)/4)';
fig = figure;
pm=patch('Faces',ff,'Vertices',cor,'FaceVertexCData',m1,'FaceColor','interp','Selected','on');
colormap(flipud(jet(20)))
shading interp
colorbar
set(pm, 'edgecolor','black','LineWidth',0.5)
grid on
grid minor
3 Comments
Walter Roberson
on 29 Oct 2019
How are you generating the data for contourf() ?
Mooner Land
on 29 Oct 2019
Mooner Land
on 30 Oct 2019
Accepted Answer
More Answers (0)
Categories
Find more on Lighting, Transparency, and Shading 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!