Difference between revisions of "Array.addsequence()"
Jump to navigation
Jump to search
(Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...") |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]] | *[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]] | ||
− | ==Array.addsequence(InFront, StartFrom, OptionalSequenceArray) | + | ==Array.addsequence(InFront, StartFrom, OptionalSequenceArray)== |
− | Returns the added sequence of the value in the last column when the InFront value as "0"(default).Or the added sequence value will be display as the first column | + | Returns the added sequence of the value in the last column when the InFront value as "0"(default).Or the added sequence value will be display as the first column other than 0. |
|3,3,1..10|.addsequence(0,11) | |3,3,1..10|.addsequence(0,11) | ||
Line 28: | Line 28: | ||
==See Also== | ==See Also== | ||
− | [[Array.addcolumn() | | + | [[Array.addcolumn() |addcolumn]] |
− | [[Array.addrow() | | + | [[Array.addrow() |addrow]] |
Latest revision as of 02:40, 21 April 2020
Array.addsequence(InFront, StartFrom, OptionalSequenceArray)
Returns the added sequence of the value in the last column when the InFront value as "0"(default).Or the added sequence value will be display as the first column other than 0.
|3,3,1..10|.addsequence(0,11)
1 | 2 | 3 | 11 |
4 | 5 | 6 | 12 |
7 | 8 | 9 | 13 |
|3,3,123..145|.addsequence(1,1,(-10)..10)
-10 | 123 | 124 | 125 |
-9 | 126 | 127 | 128 |
-8 | 129 | 130 | 131 |