Matrix dimensions must agree error

조회 수: 1 (최근 30일)
Akshat Shrivastava
Akshat Shrivastava 2018년 8월 7일
댓글: Akshat Shrivastava 2018년 8월 7일
t = sample.VarName1;
X = sample.VarName2;
indexOfComments = find(~isnan(sample.VarName3));
timeofcomment = sample.VarName1(indexOfComments);
t_end = t(indexOfComments);
indexTrim = t >= t_end - 5 & t <= t_end + 5 ;
t = t(indexTrim);
X = X(indexTrim);
Fs = 1/(t(2)-t(1));
I am getting an error 'Matrix dimensions must agree.'
Error in Untitled2 (line 106)
indexTrim = t >= t_end - 5 & t <= t_end + 5 ;
Please help!!
  댓글 수: 2
Dennis
Dennis 2018년 8월 7일
t and t_end might both be vectors of different sizes. Then you can't check if t>=t_end.
Akshat Shrivastava
Akshat Shrivastava 2018년 8월 7일
Hello Dennis, t is the vector which stores one column from the text file (which represents time). t_end is the vector which stores 'index number' of the rows which has comment on the third column of the text file. can you tell me what should i do to make it work? Thank you.

댓글을 달려면 로그인하십시오.

채택된 답변

Dennis
Dennis 2018년 8월 7일
I hope i understood your code right, this might help:
t = sample.VarName1;
X = sample.VarName2;
indexOfComments = find(~isnan(sample.VarName3));
timeofcomment = sample.VarName1(indexOfComments);
t_end = t(indexOfComments);
r=zeros(numel(t_end)*11,1);
for i=1:numel(t_end)
r((i-1)*11+1:(i-1)*11+11)=t_end(i)-5:t_end(i)+5;
end
r=unique(r(r>0))
t=t(r(r<=numel(t)));
X = X(r(r<=numel(X)));
Fs = 1/(t(2)-t(1));

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!