Problem 42783. Accessing values in a cell
You are given c, which is a 1xN cell array, and a and b, which are each two 1xM vectors. Your job is to give the bth value in the ath cell for the entire vectors a and b.
For example c{1}=2:6; c{2}=7:12; c{3}=13:18;
a=[1 2 3]; b=[4 5 6];
You would want to output [5 11 18], which are the values of c{1}(4), c{2}(5) and c{3}(6). You can assume that a and b are the same length, all of the values in c are numbers, and there will be no empty cells. Good luck!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers48
Suggested Problems
-
Maximum running product for a string of numbers
2213 Solvers
-
3385 Solvers
-
Back to basics 22 - Rotate a matrix
922 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
545 Solvers
-
Basics: 'Find the eigenvalues of given matrix
426 Solvers
More from this Author80
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!