Effacer les filtres
Effacer les filtres

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

6 vues (au cours des 30 derniers jours)
SANGAMAESWARAN R
SANGAMAESWARAN R le 11 Mai 2020
When you look at the imported table BicycleCounts, how many rows does it have? MATLAB workspace size of each variable??

Réponses (2)

Walter Roberson
Walter Roberson le 11 Mai 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

ahmed ibrahim
ahmed ibrahim le 6 Jan 2021
uiimport("BicycleCounts.csv")

Catégories

En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by