how to select and save particulat part of a column in mat file?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
SimTec
am 24 Aug. 2021
Bearbeitet: Turlough Hughes
am 24 Aug. 2021
I have saved a CSV file as mat file and I could read it. the file has many column and each column has thousands of rows.
How can I access and select particular column and sets of rows of these column and save it as matfile?
mydata=readmatrix('TEST.csv');
0 Kommentare
Akzeptierte Antwort
Turlough Hughes
am 24 Aug. 2021
Bearbeitet: Turlough Hughes
am 24 Aug. 2021
columns = [2 3 5];
rows = 50:100;
x = mydata(rows,columns);
save('mydata.mat','x')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!