ansys.mapdl.core.Mapdl.mfun#
- Mapdl.mfun(parr='', func='', par1='', **kwargs)#
Copies or transposes an array parameter matrix.
Mechanical APDL Command: *MFUN
- Parameters:
- parr
str
The name of the resulting array parameter matrix. See starset for name restrictions.
- func
str
Copy or transpose function:
COPY
-Par1
is copied toParR
TRAN
-Par1
is transposed toParR
. Rows (m) and columns (n) ofPar1
matrix are transposed to resultingParR
matrix of shape (n,m).
- par1
str
Array parameter matrix input to the operation.
- parr
Notes
Warning
This function contains specificities regarding the argument definitions. Please refer to the command documentation for further explanations.
Argument Descriptions
parr : str
- The name of the resulting array parameter matrix. See starset for name restrictions.func : str
- Copy or transpose function:COPY
-Par1
is copied toParR
TRAN
-Par1
is transposed toParR
. Rows (m) and columns (n) ofPar1
matrix are transposed to resultingParR
matrix of shape (n,m).
par1 : str
- Array parameter matrix input to the operation.
Operates on one input array parameter matrix and produces one output array parameter matrix according to:
ParR
= f(Par1
)where the function (f) is either a copy or transpose, as described above.
Functions are based on the standard FORTRAN definitions where possible.
ParR
may be the same asPar1
. Starting array element numbers must be defined for each array parameter matrix if it does not start at the first location. For example, mfun,A(1,5),COPY,B(2,3) copies matrix B (starting at element (2,3)) to matrix A (starting at element (1,5)). The diagonal corner elements for each submatrix must be defined: the upper left corner by the array starting element (on this command), the lower right corner by the current values from the vcol and vlen commands. The default values are the (1,1) element and the last element in the matrix. No operations progress across matrix planes (in the 3rd dimension). Absolute values and scale factors may be applied to all parameters ( vabs, vfact ). Results may be cumulative ( vcum ). Array elements should not be skipped with the vmask and theNINC
value of the vlen specifications. The number of rows ( vlen ) applies to thePar1
array. See the voper command for details.This command is valid in any processor.