Difference between revisions of "Category:Array-reducing functions"
m |
|||
Line 1: | Line 1: | ||
[[Category:Array Functions]] | [[Category:Array Functions]] | ||
− | An '''''array-reducing function''''' operates | + | An '''''array-reducing function''''' operates over an index of an array and returns a result without that index. For example, if x is indexed by i, j, and k, Sum(x, k) sums x over k, so its result is indexed by i and j, but not k. Most array-reducing functions can operate over multiple indexes. For example, Sum(x, i, j) sums x over i and j, returning a result indexed only by k. |
− | + | See the commonly-used function [[Sum]] as an example for more details. |
Revision as of 21:45, 30 March 2014
An array-reducing function operates over an index of an array and returns a result without that index. For example, if x is indexed by i, j, and k, Sum(x, k) sums x over k, so its result is indexed by i and j, but not k. Most array-reducing functions can operate over multiple indexes. For example, Sum(x, i, j) sums x over i and j, returning a result indexed only by k.
See the commonly-used function Sum as an example for more details.
Pages in category "Array-reducing functions"
The following 15 pages are in this category, out of 15 total.