how to find out the index with its value from cell arrays?
Show older comments
I have two cell arrays. In one cell, there is a value of the matrices with dimension 100 by 10 and other cell there is row and column number of the matrices100 by 2. the array length is same i.e. 10 for both. Now, I want to find out the the cell array with having the values from matrix (100 by 10), whose index is matched with other matrix (100 by 2).
But this error is coming 'Unable to use a value of type 'cell' as an index'. Please help me solve it.
T3=num2cell(tr1,1); % having values
V1=num2cell(v,1) % having rows and columns for 10 arrays
T3=T3';
for k1=1:10;
sigval{k1}=T3(V1(k1,1),:);
end
6 Comments
KSSV
on 15 Sep 2020
Why did you use num2cell? Which line showing error?
AS
on 15 Sep 2020
KSSV
on 15 Sep 2020
T3=num2cell(tr1,1); % having values
V1=num2cell(v,1) % having rows and columns for 10 arrays
T3=T3';
sigval = cell(10,1) ;
for k1=1:10;
sigval{k1}=T3(V1(k1,1),:);
end
AS
on 15 Sep 2020
AS
on 15 Sep 2020
KSSV
on 15 Sep 2020
You can read about ismember.
Answers (0)
Categories
Find more on Operators and Elementary Operations 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!