Skip to main content

linspaced

Method of ComplexMatrix.

Overloads

NameDescription
linspaced(bool low, bool high) -> ComplexMatrixSets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)
linspaced(integer low, integer high) -> ComplexMatrixSets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)
linspaced(real low, real high) -> ComplexMatrixSets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)
linspaced(complex low, complex high) -> ComplexMatrixSets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)

linspaced(bool low, bool high) -> ComplexMatrix

Sets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)

Parameters

  • low: The first value in the sequence.
  • high: The last value in the sequence.

linspaced(integer low, integer high) -> ComplexMatrix

Sets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)

Parameters

  • low: The first value in the sequence.
  • high: The last value in the sequence.

linspaced(real low, real high) -> ComplexMatrix

Sets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)

Parameters

  • low: The first value in the sequence.
  • high: The last value in the sequence.

linspaced(complex low, complex high) -> ComplexMatrix

Sets all elements of the ComplexMatrix lhs to linearly spaced values. This function is only supported by one-dimensional matrices (i.e. vectors)

Parameters

  • low: The first value in the sequence.
  • high: The last value in the sequence.