How to find the product of only some of the elements in a vector or matrix in MATLAB
3 ビュー (過去 30 日間)
古いコメントを表示
I need to find the product of some of the elements in a vector. For example from element 120 to element 160. I can only find information about how to find the product of all the elements in a vector (or all the elements in a vector or column of a matrix), this is what the prod command does. How do i find the product of only some of the elements in a vector?
0 件のコメント
採用された回答
Jonas
2022 年 5 月 4 日
are you looking for
prod(yourVector(120:160))
2 件のコメント
Steven Lord
2022 年 5 月 4 日
The 120:160 piece isn't specifically related to the prod command.
yourVector(120:160) is an indexing operation. See this other documentation page for more information about indexing beyond what's in that Get Started documentation.
Then the whole command calls the prod function on the results of that indexing operation. So it's chaining together multiple operations.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!