How to find min and max of a text file full of numbers?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
NikePro
am 5 Feb. 2016
Kommentiert: Star
am 6 Jan. 2019
I am trying to figure out how to find a specific value in a text file such as being able to find a min and max by MATLAB reading a .txt and finding the max / min values.
2 Kommentare
Akzeptierte Antwort
Star Strider
am 5 Feb. 2016
This works:
fidi = fopen('Kurtis2821 Text.txt','r');
D = textscan(fidi, '%f%f%f%f%f', 'HeaderLines',1, 'CollectOutput',1);
FileMax = max(D{:}(:))
FileMin = min(D{:}(:))
FileMax =
146.7
FileMin =
-121.08
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings 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!