vec#
- MapdlMath.vec(size=0, dtype=<class 'numpy.float64'>, init=None, name=None, asarray=False)[source]#
Create a vector.
- Parameters:
- size
int
Size of the vector
- 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
Give the vector a name. Otherwise one will be automatically generated.
- asarraybool,
optional
Return a scipy array rather than an APDLMath matrix.
- size
- Returns:
ansys.mapdl.math.AnsVec
ornumpy.ndarray
APDLMath Vector or
numpy.ndarray
.