%--------------------------------------------------------------------------
% MESH.GET_NODE_LIST
%--------------------------------------------------------------------------
% Get the list of te NODES objects from a mesh given its label
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
out = GET_NODE_LIST(ME,label)
out = MESH.GET_NODE_LIST(ME,label)
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% MESH.GET_GEOM allows to get the list of te NODES objects from a mesh
% given its label
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% ME : MESH object
% label : STRING - label of the physical group to extract
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% out : NODE objects - set of NODES
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
obj
obj =
MESH with properties:
point: [1x2 POINT]
group: [1x1 GROUP]
nodes: [1x18 NODE]
label
label =
P1
out = GET_NODE_LIST(obj,label)
out =
NODE with properties:
node_number: 18
coor: [0 0]