CREATE A MATRIX FROM VECTOR¶
Assembles up to three numeric list vectors into a single matrix by treating each vector as a column. Use this worker whenever you need to combine separate data series (e.g., time, force, displacement) into a columnar matrix for downstream processing.
When to use¶
Classification: process.
Tagged: assembly, column, list-to-matrix, matrix, reshape, vector.
Inputs¶
| Label | ID | Type | Default | Required | Description |
|---|---|---|---|---|---|
| Vector 1 | vector1 | list | — | First input list to be placed as column 1 of the output matrix; optional — omit if the matrix requires fewer than one column. | |
| Vector 2 | vector2 | list | — | Second input list to be placed as column 2 of the output matrix; optional — omit if fewer than two columns are needed. | |
| Vector 3 | vector3 | list | — | Third input list to be placed as column 3 of the output matrix; optional — omit if fewer than three columns are needed. |
Outputs¶
| Label | ID | Type | Description |
|---|---|---|---|
| matrix_createfromvectorascolumn_output_1 | matrix_createfromvectorascolumn_output_1 | matrix | Resulting matrix whose columns correspond to the supplied input vectors (up to 3 columns), in the order vector1 → vector2 → vector3; row count equals the length of the provided vectors. |
Disciplines¶
- data.dataset.transform
Auto-generated from transformation schema. Worker id: matrix_createfromvectorascolumn. Schema hash: 5103d3218ded. Hand-curated docs in workerexamples/ override this page when present.