Matrix class

Constructors

Matrix(int m, int n)
Matrix.filled(int m, int n, List<List<Complex>> entries)
Matrix.filledByReals(int m, int n, List<List<double>> entriesReal)
Matrix.identity(int m, int n)

Properties

entries List<List<Complex>>
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
m int
getter/setter pair
n int
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

add(Matrix x) Matrix
get(int i, int j) Complex
mul(Matrix x) Matrix
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
set(int i, int j, Complex value) → void
toLatex() String
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited