How to make a 2D pseudocolor (pcolor) plot in triangle shapes instead of a square shape with triangle cordinates data?

1 次查看(过去 30 天)
I have the coordinates of 8 closed triangles that intersect at the same points and third data. How to fill these triangles with third data similar to 2D pcolor figure, i.e., with colour bars ?
load('data1.mat')
plot(a1,b1)

采纳的回答

Voss
Voss 2022-10-13
load('data1.mat')
x = reshape(a1(1:end-1),3,[])
x = 3×8
0.4500 0.4500 0.4500 0.4500 0.4500 0.4500 0.4500 0.4500 0.9101 1.0037 1.1725 1.1731 1.2391 1.2686 1.2719 1.2698 1.0037 1.1725 1.1731 1.2391 1.2686 1.2719 1.2698 0.7696
y = reshape(b1(1:end-1),3,[])
y = 3×8
0.9272 0.9272 0.9272 0.9272 0.9272 0.9272 0.9272 0.9272 1.0886 1.1161 1.1373 1.1364 0.9762 0.8198 0.6920 0.6851 1.1161 1.1373 1.1364 0.9762 0.8198 0.6920 0.6851 0.5299
patch(x,y,c1)
colorbar

更多回答(1 个)

Bjorn Gustavsson
Bjorn Gustavsson 2022-10-13
This sounds like a task for trisurf. Check the help and documentation to that function. If you want the pcolor rather than the surf layout, you achieve that by either setting the inputs to the z-coordinates to zero or simply by setting the view from above:
view(0,90)
HTH

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by