Info
This question is closed. Reopen it to edit or answer.
how do i input this in built in funtions
1 view (last 30 days)
Show older comments
multiply and count elements
0 Comments
Answers (2)
Star Strider
on 9 Feb 2015
I’m not certain what you want, so I’ll venture this:
x=[3,7,2,9,4];
product_x = prod(x)
elements_x = length(x)
elements_x = numel(x)
produces:
product_x =
1512
elements_x =
5
elements_x =
5
0 Comments
Image Analyst
on 9 Feb 2015
If m is your matrix:
theProduct = prod(m(:)); % Multiply all elements together.
theCount = numel(m); % Count the number of elements in the array.
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!