Skip to main content

[]

Symbol of ComplexArray.

Overloads

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

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

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

Parameters

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

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

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

Parameters

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

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

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

Parameters

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

(ComplexArray lhs [] integer i) -> complex

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

Parameters

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

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

Gets or sets the elements of the ComplexArray using slices.

Parameters

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

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

Gets or sets the elements of the ComplexArray using slices.

Parameters

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