How to make a 2D pseudocolor (pcolor) plot in triangle shapes instead of a square shape with triangle cordinates data?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vijay Sagar
el 13 de Oct. de 2022
Respondida: Voss
el 13 de Oct. de 2022
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)
0 comentarios
Respuesta aceptada
Voss
el 13 de Oct. de 2022
load('data1.mat')
x = reshape(a1(1:end-1),3,[])
y = reshape(b1(1:end-1),3,[])
patch(x,y,c1)
colorbar
0 comentarios
Más respuestas (1)
Bjorn Gustavsson
el 13 de Oct. de 2022
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
0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!