Borrar filtros
Borrar filtros

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

6 visualizaciones (últimos 30 días)
When you look at the imported table BicycleCounts, how many rows does it have? MATLAB workspace size of each variable??

Respuestas (2)

Walter Roberson
Walter Roberson el 11 de Mayo de 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 el 6 de En. de 2021
uiimport("BicycleCounts.csv")

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by