imat_node/remove


Purpose

Remove nodes.

Syntax

node=remove(node,1:10)
node=node.remove(1:10)

Description

REMOVE will remove nodes from the IMAT_NODE object NODE. If ID is numeric, it must contain the node ID(s) to remove. If it is logical, it contains the indices into NODE of the node(s) to remove.

Examples

>> 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);

 

See Also

imat_node/add, imat_node/keep