Previous Up Next

13.3.6  Product of elements of each column of a matrix

The product command can multiply the elements of the columns of a matrix (see Section 5.3.27 for other things product can do).

Example

product([[1,2],[3,4]])
     

3,8
          

Previous Up Next