When you look at the imported table BicycleCounts, how many rows does it have?
조회 수: 14 (최근 30일)
이전 댓글 표시
When you look at the imported table BicycleCounts, how many rows does it have? MATLAB workspace size of each variable??
댓글 수: 0
답변 (2개)
Walter Roberson
2020년 5월 11일
>> bikeTbl = readtable('BicycleCounts.csv');
>> height(bikeTbl)
ans =
9387
>> size(bikeTbl,1)
ans =
9387
>> temp = bikeTbl.Timestamp;
>> whos temp
Name Size Bytes Class Attributes
temp 9387x1 150230 datetime
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!