Skip to main content

[]

Symbol of ComplexMatrix.

Overloads

NameDescription
(const ComplexMatrix lhs [] integer i) -> complexGets or sets the element at index i of the ComplexMatrix.
(const ComplexMatrix lhs [] const List<integer> inds) -> complexGets or sets the element at row inds[0] and column inds[1] of the ComplexMatrix.
(const ComplexMatrix lhs [] const List<List<integer>> slices) -> ComplexMatrixGets or sets the elements of the ComplexMatrix using slices.
(const ComplexMatrix lhs [] const Slices slices) -> ComplexMatrixGets or sets the elements of the ComplexMatrix using slices.
(ComplexMatrix lhs [] integer i) -> complexGets or sets the element at index i of the ComplexMatrix.
(ComplexMatrix lhs [] const List<integer> inds) -> complexGets or sets the element at row inds[0] and column inds[1] of the ComplexMatrix.

(const ComplexMatrix lhs [] integer i) -> complex

Gets or sets the element at index i of the ComplexMatrix.

Parameters

  • lhs: Left-hand side value.
  • i: The index of the element to get or set.

(const ComplexMatrix lhs [] const List<integer> inds) -> complex

Gets or sets the element at row inds[0] and column inds[1] of the ComplexMatrix.

Parameters

  • lhs: Left-hand side value.
  • inds: A vector of two indices.

(const ComplexMatrix lhs [] const List<List<integer>> slices) -> ComplexMatrix

Gets or sets the elements of the ComplexMatrix using slices.

Parameters

  • lhs: Left-hand side value.
  • slices: A vector of slices describing the multi-dimensional indices to access.

(const ComplexMatrix lhs [] const Slices slices) -> ComplexMatrix

Gets or sets the elements of the ComplexMatrix using slices.

Parameters

  • lhs: Left-hand side value.
  • slices: A vector of slices describing the multi-dimensional indices to access.

(ComplexMatrix lhs [] integer i) -> complex

Gets or sets the element at index i of the ComplexMatrix.

Parameters

  • lhs: Left-hand side value.
  • i: The index of the element to get or set.

(ComplexMatrix lhs [] const List<integer> inds) -> complex

Gets or sets the element at row inds[0] and column inds[1] of the ComplexMatrix.

Parameters

  • lhs: Left-hand side value.
  • inds: A vector of two indices.