How can I find time in decimal?

조회 수: 2 (최근 30일)
Saad Alqahtani
Saad Alqahtani 2020년 9월 1일
답변: Star Strider 2020년 9월 1일
Hello,
I'm trying to find time points in decimals but I keep getting this error:
Unable to perform assignment because the left and right sides have a different
number of elements.
Error in hold_9_1_20_CUT_trial (line 274)
c(2) = calcEnd;
here is my code:
calcStart =find(time==25);
calcEnd = find(time==30.23);
c(1)= calcStart;
c(2) = calcEnd;
The code works if I for expample I changed the calcEnd = find(time==30.23); to be 30.25 or 30.5 but not 30.23 or 3.72
Any help would be apprecitated

답변 (1개)

Star Strider
Star Strider 2020년 9월 1일
Since it is not certain if ‘time’ is a row or column vector, the most robust option would be:
c{1} = calcStart;
c{2} = calcEnd;
creating them as cell arrays. Use cell array indexing or the cell2mat function to recover them later.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by