DataSeries/convert
conversions to and from DataSeries
Calling Sequence
Parameters
Description
Examples
Compatibility
convert( expr, DataSeries )
convert( ds, typ )
expr
-
a list, Array, Vector or table
ds
DataSeries
The convert command can convert certain types of expressions expr to a DataSeries, and can convert a DataSeries ds to certain other types typ.
The convert( expr, DataSeries ) form of the command converts an expression expr, of type list, Array, Vector or table, to a DataSeries object. Note that the order of the elements in the resulting DataSeries is not well-defined in the case that expr is a table.
A DataSeries ds can be converted to a list, set, Array, Vector or Matrix.
ds≔convert⁡1,2,3,DataSeries
ds≔112233
type⁡ds,DataSeries
true
convert⁡1,2,3,DataSeries
112233
convert⁡table⁡a=1,b=2,c=3,DataSeries
a1b2c3
convert⁡ds,list
1,2,3
convert⁡ds,Array
123
convert⁡ds,Vectorrow
convert⁡ds,Matrix
The DataSeries/convert command was introduced in Maple 2016.
For more information on Maple 2016 changes, see Updates in Maple 2016.
See Also
Array
convert
list
Matrix
set
table
type
type/list
Vector
Download Help Document