i want to search index number of element (based on condition)in an array and magnitude corresponds to index in matrix
1 次查看(过去 30 天)
显示 更早的评论
I have matrices from t1 to t24 (24 matrices of size 122249*25)
time matrix and tof is 4D matrix , when value in time matrix equals (or nearer) in tof matrix i want to find the voltage value from the correspoding matrices which is t1 to t24
here when tt value increases from 1 to 2 , it should search should change from t1 to t2
for tt = 1:24
for rr = 1:24
for mm = 1:10
for nn = 1:50
[~,idx] = min(abs(time(:,1) - tof(mm,nn,rr,tt)));
voltage(mm,nn,rr,tt) =t(tt)[(idx,rr+1)]; %% here is the error
end
end
end
end
when tt value increases subsequently it should start searching in t(tt)???
in code if i write t1(idx,rr+1) it will search in t1 matrix, like wise when tt value increases searching matrix should also change t2,t3,t4,....t24
any help would be appreciated
5 个评论
Stephen23
2019-8-21
编辑:Stephen23
2019-8-21
https://www.mathworks.com/matlabcentral/answers/430467-extracting-info-from-multiple-matrices#comment_736997
"it will search in t1 matrix ... should also change t2,t3,t4,....t24"
Do NOT do this.
"any help would be appreciated"'
Simply use indexing, then your task is trivially easy (see links above).
回答(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!