Remove nodes.
node=remove(node,1:10)
node=node.remove(1:10)
REMOVE removes nodes from the IMAT_NODE object NODE. If ID is numeric, it contains the node ID(s) to remove. If it is logical, it contains the indices into NODE of the node(s) to remove.
>> fem=readunv('fem_file.unv')
fem =
IMAT_FEM Finite Element Model
1 coordinate system
30 nodes
10 elements
3 tracelines
>> node=fem.node;
>> nodenode.remove(1:2);
>> node=remove(tl,tl.id==1);