matrix#
- MapdlMath.matrix(matrix, name=None, triu=False)[source]#
Send a scipy matrix or numpy array to MAPDL.
- Parameters:
- matrix
np.ndarray
Numpy array to send as a matrix to MAPDL.
- name
str
,optional
APDLMath matrix name. Optional and defaults to a random name.
- triubool,
optional
True
when the matrix is upper triangular,False
when unsymmetric.
- matrix
- Returns:
AnsMat
MapdlMath matrix.
Examples
Generate a random sparse matrix.
>>> from scipy import sparse >>> sz = 5000 >>> mat = sparse.random(sz, sz, density=0.05, format='csr') >>> ans_mat = mm.matrix(mat, name) >>> ans_mat APDLMath Matrix 5000 x 5000
Transfer the matrix back to Python.
>>> ans_mat.asarray() <500x5000 sparse matrix of type '<class 'numpy.float64'>' with 1250000 stored elements in Compressed Sparse Row format>