Filter löschen
Filter löschen

Finding product product of elements in a vector

1 Ansicht (letzte 30 Tage)
MG
MG am 28 Nov. 2015
Beantwortet: Image Analyst am 28 Nov. 2015
I am using a vector whose length I want to vary. So supposing the vector is x = [f(1), f(2), f(3), ..... f(n)]. How do I find the product of all these entries multiplied with each other? I don't want to use cumprod because it gives me a vector output, but I only want the scalar output where the final answer is a product of all the entries.

Akzeptierte Antwort

Image Analyst
Image Analyst am 28 Nov. 2015
Use the prod function
theProduct = prod(yourVector);

Weitere Antworten (0)

Kategorien

Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by