ones#
- MapdlMath.ones(nrow, ncol=None, dtype=<class 'numpy.float64'>, name=None, asarray=False)[source]#
Create a vector or matrix containing all ones
- Parameters:
- nrow
int
Number of rows.
- ncol
int
,optional
Number of columns. If specified, returns a matrix.
- dtype
np.dtype
,optional
Datatype of the vector. Must be either
np.int32
,np.int64
, ornp.double
.- name
str
,optional
APDLMath matrix name. Optional and defaults to a random name.
- asarraybool,
optional
Return a scipy array rather than an APDLMath matrix.
- nrow
- Returns:
Examples
Create a ones vector.
>>> from ansys.mapdl.core import launch_mapdl >>> mapdl = launch_mapdl() >>> mm = mapdl.math() >>> vec = mm.ones(10)
Create a ones matrix.
>>> mat = mm.ones(10, 10)