SArrayFloat(flist)
A native Speect class for containing an array (vector) of floating point values. Create a new object, that contains an array of floating point values.
| Parameters: | flist (list) – A Python list containing only floating point values. |
|---|---|
| Returns: | Newly created SArrayFloat object. |
| Return type: | SArrayFloat |
get()
Return a copy of this SArrayFloat object as a Python list of floating point values.
| Returns: | Python list of floating point values. |
|---|---|
| Return type: | list |
Return a count of the number of elements in the SArrayFloat object.
| Returns: | Number of elements in the SArrayFloat object. |
|---|---|
| Return type: | int |
SArrayInt(ilist)
A native Speect class for containing an array (vector) of integer values. Create a new object, that contains an array of integer point values.
| Parameters: | ilist (list) – A Python list containing only integer values. |
|---|---|
| Returns: | Newly created SArrayInt object. |
| Return type: | SArrayInt |
get()
Return a copy of this SArrayInt object as a Python list of integer values.
| Returns: | Python list of integer values. |
|---|---|
| Return type: | list |
Return a count of the number of elements in the SArrayInt object.
| Returns: | Number of elements in the SArrayInt object. |
|---|---|
| Return type: | int |