mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
24 lines
522 B
Markdown
24 lines
522 B
Markdown
# Function prod
|
|
|
|
Compute the product of a list of values In case of a (multi dimensional) array or matrix, the product of all elements will be calculated.
|
|
|
|
prod(a, b, c, ...) prod(A)
|
|
|
|
|
|
### Parameters
|
|
|
|
Parameter | Type | Description
|
|
--------- | ---- | -----------
|
|
`args` | ... * | A single matrix or or multiple scalar values
|
|
|
|
### Returns
|
|
|
|
Type | Description
|
|
---- | -----------
|
|
* | res
|
|
|
|
|
|
|
|
|
|
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
|