Table Of Contents

Previous topic

speect.array_float – Floating Point Arrays

Next topic

speect.track_float – Floating Point Track

speect.matrix_float – Floating Point Matrix

class speect.matrix_float.SMatrixFloat(*args)

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
SMatrixFloat.get()

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
SMatrixFloat.row_count

Return a count of the number of rows in the SMatrixFloat object.

Returns:Number of rows in the SMatrixFloat object.
Return type:int
SMatrixFloat.col_count

Return a count of the number of columns in the SMatrixFloat object.

Returns:Number of columns in the SMatrixFloat object.
Return type:int

speect.matrix_int – Integer Matrix

class speect.matrix_int.SMatrixInt(*args)

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
SMatrixInt.get()

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
SMatrixInt.row_count

Return a count of the number of rows in the SMatrixInt object.

Returns:Number of rows in the SMatrixInt object.
Return type:int
SMatrixInt.col_count

Return a count of the number of columns in the SMatrixInt object.

Returns:Number of columns in the SMatrixInt object.
Return type:int