mat#
- MapdlMath.mat(nrow=0, ncol=0, dtype=<class 'numpy.float64'>, init=None, name=None, asarray=False)[source]#
Create an APDLMath matrix.
- Parameters:
- nrow
int
Number of rows.
- ncol
int
Number of columns.
- dtype
np.dtype
,optional
Datatype of the vector. Must be either
np.int32
,np.int64
, ornp.double
.- init
str
,optional
Initialization options. Can be
"ones"
,"zeros"
, or"rand"
.- name
str
,optional
Matrix name. If given, assigns a MAPDL matrix based on the existing named matrix. Otherwise one will be automatically generated.
- asarraybool,
optional
Return a scipy array rather than an APDLMath matrix.
- nrow
- Returns:
AnsMat
APDLMath matrix.