How to add data to a patch plot in matlab? -


i using distmesh mesh sphere cut hemisphere after. major output of isosurface:

pv=isosurface(x,y,z,reshape(fd([x(:),y(:),z(:)],varargin{:}),size(x)),0);  p=pv.vertices;  t=pv.faces;  p1 = patch('faces',t,'vertices',p,'facecol',[.8,.9,1],'edgecol','k'); 

i need add more vertices surface, not sure how it, appreciated.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -