Difference between revisions of "Product"

m (→‎Examples: Minor fix to example con't)
 
(One intermediate revision by the same user not shown)
Line 11: Line 11:
 
== Examples ==
 
== Examples ==
 
:<code>Index I := 1..10</code>
 
:<code>Index I := 1..10</code>
:<code>Product(1 + 1/J, J) &rarr; 11</code>
+
:<code>Product(1 + 1/I, I) &rarr; 11</code>
  
 
== See Also ==
 
== See Also ==

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».

Syntax:

Product(X: Array[I]; I: Index)

Examples

Index I := 1..10
Product(1 + 1/I, I) → 11

See Also

Comments


You are not allowed to post comments.