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??

回答(2 个)

Walter Roberson
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

ahmed ibrahim
ahmed ibrahim 2021-1-6
uiimport("BicycleCounts.csv")

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by