Catenates list entries in a matrix. (original) (raw)
Scilab 5.3.3
- Scilab help
- Optimization and Simulation
- Neldermead
- Optimization base
- Optimization simplex
- NDcost
- aplat
- datafit
- derivative
- fit_dat
- fsolve
- karmarkar
- leastsq
- list2vec
- lmisolver
- lmitool
- lsqrsolve
- numdiff
- optim
- qld
- qp_solve
- qpsolve
- quapro
- readmps
- recons
- semidef
- vec2list
Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function
Scilab help >> Optimization and Simulation > list2vec
list2vec
Catenates list entries in a matrix.
Calling Sequence
[bigVector,varsizes] = list2vec(li)
Arguments
li
a list with n entries. The list entries must be 2D matrices with comptible types.
bigVector
A column vector. Formed by the elements of the corresponding list entry.
varsizes
An n by 3 matrix. Each row contains the dimensions of the corresponding list entry.
Description
Catenates list entries in a column vector. The list entries are supposed to be matrices with compatible types with respect to catenation.
This function is a subsidiary for lmisolver
Examples
list2vec(list(1,2,3)) list2vec(list([1 2 3],[4;5],[%s %s+1]))
See Also
- vec2list — list2vec reciprocal function