Matrix

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
arrayList[object][optional]
dimensionsList[int][optional]

Example

from opcua_webapi.models.matrix import Matrix

# TODO update the JSON string below
json = "{}"
# create an instance of Matrix from a JSON string
matrix_instance = Matrix.from_json(json)
# print the JSON string representation of the object
print(Matrix.to_json())

# convert the object into a dict
matrix_dict = matrix_instance.to_dict()
# create an instance of Matrix from a dict
matrix_from_dict = Matrix.from_dict(matrix_dict)

[Back to Model list] [Back to API list] [Back to README]