Difference between revisions of "Array.subtract"
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 the same user not shown) | |||
Line 6: | Line 6: | ||
==Array.subtract(Thing) == | ==Array.subtract(Thing) == | ||
− | Array | + | Array subtract a Thing to each element. |
[[1,3,4],[2,3,4]].subtract(45) | [[1,3,4],[2,3,4]].subtract(45) | ||
Line 18: | Line 18: | ||
==See Also== | ==See Also== | ||
[[Array.add]] | [[Array.add]] | ||
+ | |||
[[Array.subtract]] | [[Array.subtract]] | ||
+ | |||
[[Array.multiply]] | [[Array.multiply]] | ||
+ | |||
[[Array.divide]] | [[Array.divide]] | ||
+ | |||
[[Array.div]] | [[Array.div]] | ||
− | [[Array. | + | |
+ | [[Array.mod]] |
Latest revision as of 11:54, 1 March 2017
Array.subtract(Thing)
Array subtract a Thing to each element.
[[1,3,4],[2,3,4]].subtract(45)
-44 | -42 | -41 |
-43 | -42 | -41 |