Maximum time of tic-toc function
조회 수: 26 (최근 30일)
이전 댓글 표시
I was measuring data every 10 minutes for a week. In every measurement, I also need to record current time (don’t need be very accurate). I’m doing this by putting a tic at the start of the script and call toc on every measurement and save it as current time. I’m measuring for a week which is 604800 second. The tic-toc is using a 64 bit counter, so it probably won’t overflow. Is there a potential problem with this tic toc approach? Thanks!
댓글 수: 0
답변 (1개)
Walter Roberson
2024년 10월 31일 6:18
To measure time, you could instead initialize a variable to the current time, and then
elapsed_time = datetime('now') - base_time;
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!