convert/vector
convert a list, an array or a Vector to a vector
Calling Sequence
Parameters
Description
Examples
convert(A, vector)
A
-
array, list, of rtable-based Vector
The convert(A, vector) calling sequence converts any of the following objects into a vector:
* array
* list
* rtable-based Vector
Note: The command vector has been superseded by Vector.
A≔array⁡0..1,−1..0,1,2,3,4:
convert⁡A,vector
1234
convert⁡1,2,vector
12
V≔Vector⁡1,2,3
V≔123
type⁡V,Vector
true
type⁡V,vector
false
V1≔convert⁡V,vector
V1≔123
type⁡V1,Vector
type⁡V1,vector
See Also
convert
convert/array
convert/matrix
convert/Vector
type/vector
type/Vector
Vector
vector(deprecated)
Download Help Document