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!