Multiple specific elements in an array
古いコメントを表示
I have a matrix [a b c d e f g]. I want to sum [2*(a + b) + 3*(c+d) +4*(e+f)]. How do i go about doing this ?
回答 (1 件)
Bhaskar R
2020 年 2 月 20 日
Assuming a, b,c, d, ..g are values in the vector say X
X = 1:7;
sum([2:4].*[sum(reshape(x(1:6), 2,3))]);
5 件のコメント
rockstar49
2020 年 2 月 20 日
Bhaskar R
2020 年 2 月 20 日
Your question is different from your comment
"sum [2*(a + b) + 3*(c+d) +4*(e+f)]"
"Now i want to sum 2*.36 + 3*(.14 + .13 +.12 +.1 +.09) +4*(.04 +.02)"
rockstar49
2020 年 2 月 20 日
Bhaskar R
2020 年 2 月 20 日
No, I mean to say that you have asked for "sum [2*(a + b) + 3*(c+d) +4*(e+f)]" then asking for "Now i want to sum 2*.36 + 3*(.14 + .13 +.12 +.1 +.09) +4*(.04 +.02)". Each time we can't change the evaluation of the statement. If there are only less than 10 entries you can write complete statement without using any commands using matlab indexing.
for this
sum 2*.36 + 3*(.14 + .13 +.12 +.1 +.09) +4*(.04 +.02) =
res = sum([2*x(1), 3*x(2:6), 4*x(7:8)]);
For information on indexing https://in.mathworks.com/company/newsletters/articles/matrix-indexing-in-matlab.html
I think i am clear!
rockstar49
2020 年 2 月 20 日
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!