How to load a .dat file?
    2 views (last 30 days)
  
       Show older comments
    
How to load a .dat file? I saved the Oscilloscope(waverunner 610zi) Please refer to the attached file and let me know.
3 Comments
Accepted Answer
  Ameer Hamza
      
      
 on 6 May 2018
        
      Edited: Ameer Hamza
      
      
 on 6 May 2018
  
      You can import the file easily by import tool
uiimport
but if you want to import it programatically, do it like this
f = fopen('M1--L10-22 TR SW--00000.dat');
data = textscan(f, '%f %f');
data = cell2mat(data); % convert to matrix from cell array
fclose(f)
5 Comments
More Answers (0)
See Also
Categories
				Find more on Large Files and Big Data in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!