.mat file corrupt?
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Wouter
 am 22 Apr. 2013
  
    
    
    
    
    Kommentiert: Rajeev Kumar
 am 27 Aug. 2020
            Hello,
But I get the following error:
Error using load
Unknown text on line number 1 of ASCII file
<some path>/MOTNL.MAT
"MATLAB".
I opened this .mat file in notepad and I saw it was created in Matlab 5.0 in 1999. So I believe this is a conversion error? So if this is the case could anyone maybe upconvert it? So I can open it with Matlab 2012a?
2 Kommentare
  Tobias
      
 am 22 Apr. 2013
				
      Bearbeitet: Tobias
      
 am 22 Apr. 2013
  
			>> load('MOTNL.MAT')
Warning: Updating objects saved with previous MATLAB version...
Resave your MAT files to improve loading speed. 
> In warning at 26
  In updatewarn at 11
  In ss.loadobj at 13
Do you want the .mat file I generated? There are a LOT of different variables saved in the workspace
Akzeptierte Antwort
  Walter Roberson
      
      
 am 22 Apr. 2013
        Try
 load('MOTNL.MAT', '-mat')
Remember, Linux is case-sensitive, so possibly the .MAT is throwing it off.
2 Kommentare
Weitere Antworten (1)
  per isakson
      
      
 am 22 Apr. 2013
        
      Bearbeitet: per isakson
      
      
 am 22 Apr. 2013
  
      It works here (R2012a,64bit,Windows7)
    >> load('C:\Users\poi\Downloads\MOTNL.MAT')
    Warning: Updating objects saved with previous MATLAB version...
    Resave your MAT files to improve loading speed. 
    > In warning at 26
      In updatewarn at 11
      In ss.loadobj at 13
The data looks ok.
Delete and download the file a second time.
Siehe auch
Kategorien
				Mehr zu File Operations 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!