Difference between revisions of "Product"
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
[[Category:Doc Status C]] <!-- For Lumina use, do not change --> | [[Category:Doc Status C]] <!-- For Lumina use, do not change --> | ||
− | = Product( | + | == Product(X, I) == |
− | Returns the product of all of the elements of | + | Returns the product of all of the elements of «X», along the dimension indexed by «I». |
− | + | [[Syntax]]: | |
+ | :[[Product]](X: Array[I]; I: Index) | ||
− | + | == Examples == | |
− | + | :<code>Index I := 1..10</code> | |
− | = Examples = | + | :<code>Product(1 + 1/J, J) → 11</code> |
− | |||
− | :Index I := 1..10 | ||
− | |||
− | :Product( 1+1/J,J) → 11 | ||
− | |||
− | |||
+ | == See Also == | ||
* [[CumProduct]] | * [[CumProduct]] | ||
+ | * [[ProductLog]] | ||
* [[Sum]] | * [[Sum]] | ||
+ | * [[Array-reducing functions]] |
Revision as of 21:39, 17 February 2016
Product(X, I)
Returns the product of all of the elements of «X», along the dimension indexed by «I».
- Product(X: Array[I]; I: Index)
Examples
Index I := 1..10
Product(1 + 1/J, J) → 11
See Also
Comments
Enable comment auto-refresher