Using find function in Matlab to find data at specific time
이전 댓글 표시
How can I use the find function in MATLAB in order to create a variable that includes data starting at time, t=0?
I have tried this:
N = find(Data(:)==0);
but I just get N equal to the number of data that are at t=0, not the actual data themselves.
댓글 수: 1
dpb
2021년 3월 27일
Don't need find at all here...
zData=Data(Data==0);
"Logical Addressing"
답변 (1개)
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!