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!