How to substitute some of the values in a matrix
3 次查看(过去 30 天)
显示 更早的评论
Hello all I have a matrix (748*6 double) including numbers and NaNs. The first column is test item numbers (defined already as ID) such as 1,3,5,7, etc, and the fourth column is the reaction times of participants (defined already as RT; 678, 467, etc). I need to replace some of the reaction times in this matrix. The new reaction times are in another matrix (defined already as RTc, 144*1 double) and I have the item numbers too (defined already as IDwords , 144*1 double). I wrote this code so that the reaction times in the old matrix would be substituted by the new reaction times. However, it does not work. I appreciate your help.
r=0;
for i=1:size(ID,1)
for ii=1:size(ID,2)
if ID(i,ii)==IDwords;
RT(i,ii)=RTc;
r=r+1;
end
end
end
0 个评论
采纳的回答
dpb
2018-7-12
for i=1:size(ID,1)
[inA,locB]=ismember(ID(i),IDwords);
if inA
RT(inA)=RTc(locB);
end
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!