read data from .m file
93 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hi
I want to store different variables in the same .m file,And after I must read these variables one by one. exemple
1
23 3 4
5 6 4
This is contain of .m file.I need to, load this contain, read 1st and 3 rd rows. I hope you help me. thanks
4 Kommentare
Walter Roberson
am 13 Okt. 2016
fileId = fopen('pfoutput.m');
datacell = textscan(fileId, '*%f|%f/%f*', 'HeaderLines', 3, 'CollectOutput', 1);
fclose(fileId);
opPoints = datacell{1};
atsprink
am 14 Okt. 2016
awesome...thank you for the help. I was able to make little tweaks to your solution to work as I needed it to.
Antworten (1)
Thomas
am 17 Jan. 2012
Variables are not stored in .m files as they are ASCII, Variables are usually stored in .mat files that matlab can read.
Siehe auch
Kategorien
Mehr zu Structures 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!