Matlab A file potfilenamesdat stores potential file names on
Matlab: A file “potfilenames.dat” stores potential file names, one per line. The names do not have any extension. Write a script that will print the names of the valid files, once the extension “.dat” has been added. “Valid” means that the file exists in the Current Directory, so it could be opened for reading. The script will also print how many of the file names were valid.
Solution
fid = fopen(\'PIOMAS.vol.daily.1979.2013.Current.v2.dat\',\'r\'); datacell = textscan(fid, \'%f%f%f\', \'HeaderLines\', 1, \'Collect\', 1); fclose(fid); A.data = datacell{1};