Difference between revisions of "Manuals/calci/FLATTEN"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''FLATTEN(Array,ForceFlatten,PreserveBlanks)'''</div><br/> *<math>Array</math> is set of values. ==Description== *Flattens the cells of a multi-d...") |
|||
Line 5: | Line 5: | ||
*Flattens the cells of a multi-dimensional array into a one-dimensional vector. | *Flattens the cells of a multi-dimensional array into a one-dimensional vector. | ||
*Flat data is described as data which contains values in all cells within the table. | *Flat data is described as data which contains values in all cells within the table. | ||
+ | |||
+ | |||
+ | ==Examples== | ||
+ | *FLATTEN([[1,2,3],[9,8,10],[17,13,21]]) = 1 2 3 9 8 10 17 13 21 | ||
+ | |||
== See Also == | == See Also == |
Revision as of 01:48, 14 February 2020
FLATTEN(Array,ForceFlatten,PreserveBlanks)
- is set of values.
Description
- Flattens the cells of a multi-dimensional array into a one-dimensional vector.
- Flat data is described as data which contains values in all cells within the table.
Examples
- FLATTEN([[1,2,3],[9,8,10],[17,13,21]]) = 1 2 3 9 8 10 17 13 21