access the respective values of matrix using the cell array cell position value
조회 수: 1 (최근 30일)
표시 이전 댓글
i have a matrix as shown in figure, with positions marked

I have a cell array with values
{ [ 1 4 ] ; [ 2 3] };
Now i want to take the values from position
{ [0-1 1-4] ; [0-2 2-3] } of the matrix
i.e. { [ 33 45]; [34 30] }
and get the sum of
33 + 45 +34 +30 = 142
how can i access the respective values of matrix using the cell array cell position values?
댓글 수: 0
채택된 답변
Sriram Tadavarty
2020년 3월 17일
편집: Sriram Tadavarty
님. 2020년 3월 17일
Hi Elysi,
Here is what you have asked for
% Given matrix
a = [0 33 34 16 25;...
22 0 20 12 45;...
20 40 0 30 12;...
16 12 30 0 44;...
34 56 26 15 0];
% Cell positions
cellValue = {[1, 4], [2 3]};
% To make it generic, for any number of cell elements with varying size, you can use a for loop
s=0;
for i = 1:numel(cellValue)
cellInd = cellValue{i};
tmp = [];
tmp(1) = a(0+1,cellInd(1)+1);
for j = 2:length(cellInd)
tmp = [tmp a(cellInd(j-1)+1,cellInd(j)+1)];
end
s = sum(tmp) + s;
end
Hope this helps.
Regards,
Sriram
추가 답변 (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!