Problem using Reducepatch command
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Basheer Alwaely
el 11 de Mzo. de 2018
Comentada: Basheer Alwaely
el 12 de Mzo. de 2018
Hi,
For a given W (n,3), where W contains the x,y,z coordinates of n-nodes.
tri=delaunay(W(:,1),W(:,2));
G = trisurf(tri,W(:,1),W(:,2),W(:,3)); % to convert x,y,z into patch.
I used patch G, where
FaceColor: 'flat'
FaceAlpha: 1
EdgeColor: [0 0 0]
LineStyle: '-'
Faces: [380x3 double]
Vertices: [200x3 double],
and the command is :
reducepatch(G,0.8)
I got a problem with the reducepatch command
"Warning: Error creating or updating Patch Error in value of property
FaceVertexCData... Number of colors must equal number of vertices or faces".
Any idea? how to solve it? .... many thanks.
4 comentarios
Respuesta aceptada
Guillaume
el 12 de Mzo. de 2018
Editada: Guillaume
el 12 de Mzo. de 2018
I don't use patches enough to know if the problem is with reducepatch or with patch in general.
The error occurs after reducepatch has calculated the reduced vertices and faces (that bit works fine), when it tries to actually update the patches faces and vertices. It uses
set(yourpatch, 'Faces', newcalculatedfaces, 'Vertices', newcalculatedvertices);
This fails when the patch already has a FaceVertexCData property that is a vector or matrix corresponding to the old face/vertices colours as in your case, because that also needs to be updated to match the new number of faces/vertices.
You have several workarounds:
- make all the faces one colour before calling reducepatch:
G.FaceColor = 'r'; %for example
reducepatch(G, 0.8);
- don't modify the existing patch with reducepatch but create a new one:
[newFaces, newVertices] = reducepatch(G, 0.8);
newG = patch('Faces', newFaces, 'Vertices', newVertices);
Either way you're losing the colours of the original patch and I'm not sure how you'd go about recreating them.
It's probably worthy of a bug report as the reducepatch doc certainly says nothing about this problem.
edit: I have filed a bug report
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh 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!