Finding start and end point of array from csv
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Michael Arvin
el 10 de Feb. de 2022
Comentada: Michael Arvin
el 16 de Feb. de 2022
I am trying to set the starting and ending point of x from a csv file when y = 1. How do I do it?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/890020/image.png)
RawDataTable = readtable('blabla.csv');
lengthRawDat = height(RawDataTable);
% Convert raw data
Raw_x = table2array(RawDataTable(:,1));
Raw_y = table2array(RawDataTable(:,2));
Thank you very much!
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Types 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!