フィルターのクリア

When you look at the imported table BicycleCounts, how many rows does it have?

6 ビュー (過去 30 日間)
SANGAMAESWARAN R
SANGAMAESWARAN R 2020 年 5 月 11 日
回答済み: ahmed ibrahim 2021 年 1 月 6 日
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 Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by