MATLAB: How todentify the Node Indices for Points on a Face? (PDE Toolbox)

meshpde toolbox

How can I obtain an array containing the node indices for the points on a Face?
I want to specify the value of my solution at a single point on a given Face, but I haven't found a way to select a node on a given Face that works reliably.
A workable solution is here, suggesting the use of a "getElementFaces" function : How to assign nodes to faces of a 3D tetrahedral mesh (pdetool)
,but there is no documentation for the "getElementFaces" function in the version I'm using (9.3.0.713579 (R2017b)). Is there are an option that is documented and that will remain in future versions?

Best Answer

I would suggest upgrading to R2018a or newer version, which has several mesh query functions, such as findNodes to perform the kind of queries you want.
Related Question