Following loads the values again as numeric form
str = fileread('HourlyBirkenesOzone.txt');
values = regexp(str, '(\d+\.\d+)', 'tokens');
values = str2double([values{:}]);
I am not sure how you created the current file, but if you want to save it properly then use functions such as writematrix() to write file in MS excel format or save() to save in binary format.
0 Comments
Sign in to comment.