SMatrixFloat(mlist)
A native Speect class for containing an matrix of floating point values. Create a new object, that contains an matrix of floating point point values.
Parameters: | mlist (list) – A Python list of lists containing only floating point values. |
---|---|
Returns: | Newly created SMatrixFloat object. |
Return type: | SMatrixFloat |
get()
Return a copy of this SMatrixFloat object as a Python list of lists of floating point values.
Returns: | Python list of lists floating point values. |
---|---|
Return type: | list |
Return a count of the number of rows in the SMatrixFloat object.
Returns: | Number of rows in the SMatrixFloat object. |
---|---|
Return type: | int |
Return a count of the number of columns in the SMatrixFloat object.
Returns: | Number of columns in the SMatrixFloat object. |
---|---|
Return type: | int |
SMatrixInt(mlist)
A native Speect class for containing an matrix of integer values. Create a new object, that contains an matrix of integer point values.
Parameters: | mlist (list) – A Python list of lists containing only integer values. |
---|---|
Returns: | Newly created SMatrixInt object. |
Return type: | SMatrixInt |
get()
Return a copy of this SMatrixInt object as a Python list of lists of integer values.
Returns: | Python list of lists integer values. |
---|---|
Return type: | list |
Return a count of the number of rows in the SMatrixInt object.
Returns: | Number of rows in the SMatrixInt object. |
---|---|
Return type: | int |
Return a count of the number of columns in the SMatrixInt object.
Returns: | Number of columns in the SMatrixInt object. |
---|---|
Return type: | int |