<< localise2d FEMTruss plot_truss >>

FEMTruss >> FEMTruss > localise3d

localise3d

Returns the position in the matrix of a given point. Dedicated to 3 dimensions structures.

Calling Sequence

L = localise3d(t)

Parameters

t

the index of the node (between 1 and npoints). We can pass several points at the same time.

L

the index (3 values because we are in 3 dimensions) of the corresponding node in the matrix.

Description

Returns the position in the matrix of a given point. Dedicated to 3 dimensions structures.

Examples

e = [
     [1, 1, 1] .* localise3d(1) // We fix the x, y and z coordinate of the point number 1
     [1, 0, 0] .* localise3d(2) // We fix the x coordinate of the point number 2
     [0, 1, 1] .* localise3d(3) // We fix the y and z coordinate of the point number 3
    ];

See Also

Authors


<< localise2d FEMTruss plot_truss >>