How do I product elements of a vector?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I have this matrix (3000 by 2) and I want the product of a range of elements in the second column. All of the elements are equal to 0.99 in a initial stage, but its gonna change after some further steps. I tried to use 'prod' but it didn't work...
Ex. matrix named 'aux'
prod(aux(2500,2):aux(2700,2)); It always returns me 0.99 no matter the range...
How do I do it?
tks
3 Commenti
Risposte (1)
Azzi Abdelmalek
il 22 Ott 2013
Modificato: Azzi Abdelmalek
il 22 Ott 2013
A = [71 2; 72 2; 73 2; 74 2; 75 2];
prod(A(2:4,2))
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!