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