access the respective values of matrix using the cell array cell position value
Show older comments
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?
Accepted Answer
More Answers (0)
Categories
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!