Difference between revisions of "Product"
(see also) |
m (→Examples: Minor fix to example con't) |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Array-reducing functions]] | [[Category:Array-reducing functions]] | ||
+ | [[Category:Doc Status C]] <!-- For Lumina use, do not change --> | ||
+ | |||
+ | == 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> | |
− | + | :<code>Product(1 + 1/I, I) → 11</code> | |
+ | == See Also == | ||
* [[CumProduct]] | * [[CumProduct]] | ||
+ | * [[ProductLog]] | ||
* [[Sum]] | * [[Sum]] | ||
+ | * [[Array-reducing functions]] |
Latest revision as of 14:26, 22 May 2025
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/I, I) → 11
See Also
Comments
Enable comment auto-refresher