create multiple tables from a CSV in a for loop

2 visualizaciones (últimos 30 días)
sani
sani el 14 de Sept. de 2021
Comentada: sani el 19 de Sept. de 2021
hello everyone,
I have a large CSV file (too large to upload ~ 50 GB) that I stored in a table. the table columns are time,energy.
I'd like to save segments from this table into separate tables. for that I need the new table name to be changed in some way, lets say:
T=1000;
for i = 1:6
segment = find(old_table.time<T);
new_table(i) = old_table(segment,:); %note
T = T+1000;
end
the row with the note is what I'm trying to do but not sure how.
  5 comentarios
Walter Roberson
Walter Roberson el 15 de Sept. de 2021
left_side(1:size(right_side,1), 1:size(right_side,2)) = right_side;
sani
sani el 19 de Sept. de 2021
Thank you all, it solved my problam!

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by