concatenate_columns
Overloads
| Name | Description |
|---|---|
concatenate_columns(const List<ComplexArray> arrays) -> ComplexArray | Creates a ComplexArray by concatenating several ComplexArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs ComplexArray. |
concatenate_columns(const List<RealMatrix> arrays) -> RealMatrix | Creates a RealMatrix by concatenating several RealMatrix along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs RealMatrix. |
concatenate_columns(const List<ComplexMatrix> arrays) -> ComplexMatrix | Creates a ComplexMatrix by concatenating several ComplexMatrix along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs ComplexMatrix. |
concatenate_columns(const List<IntegerArray> arrays) -> IntegerArray | Creates a IntegerArray by concatenating several IntegerArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs IntegerArray. |
concatenate_columns(const List<RealArray> arrays) -> RealArray | Creates a RealArray by concatenating several RealArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs RealArray. |
concatenate_columns(const List<BoolArray> arrays) -> BoolArray | Creates a BoolArray by concatenating several BoolArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs BoolArray. |
concatenate_columns(const List<ComplexArray> arrays) -> ComplexArray
Creates a ComplexArray by concatenating several ComplexArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs ComplexArray.
Parameters
- arrays: A vector of ComplexArray.
concatenate_columns(const List<RealMatrix> arrays) -> RealMatrix
Creates a RealMatrix by concatenating several RealMatrix along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs RealMatrix.
Parameters
- arrays: A vector of RealMatrix.
concatenate_columns(const List<ComplexMatrix> arrays) -> ComplexMatrix
Creates a ComplexMatrix by concatenating several ComplexMatrix along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs ComplexMatrix.
Parameters
- arrays: A vector of ComplexMatrix.
concatenate_columns(const List<IntegerArray> arrays) -> IntegerArray
Creates a IntegerArray by concatenating several IntegerArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs IntegerArray.
Parameters
- arrays: A vector of IntegerArray.
concatenate_columns(const List<RealArray> arrays) -> RealArray
Creates a RealArray by concatenating several RealArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs RealArray.
Parameters
- arrays: A vector of RealArray.
concatenate_columns(const List<BoolArray> arrays) -> BoolArray
Creates a BoolArray by concatenating several BoolArray along the column dimension (i.e. horizontally). The number of rows must be the same for all inputs BoolArray.
Parameters
- arrays: A vector of BoolArray.