When you look at the imported table BicycleCounts, how many rows does it have?
18 views (last 30 days)
Show older comments
When you look at the imported table BicycleCounts, how many rows does it have? MATLAB workspace size of each variable??
0 Comments
Answers (2)
Walter Roberson
on 11 May 2020
>> 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 Comments
See Also
Categories
Find more on Whos in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!