How to open a .mat file in Matlab
    524 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Hi,
I'm trying to open a .mat file in Matlab, but am unble to do it. I followed the instructions from this link below,
After step 6, I have a separate folder for 'R2012B', now what should I select from this folder.Please let me know your suggestions.
6 Commenti
  Joaquin
 il 25 Nov 2024
				doesn't show anything, it gives me an error
Error using imageDisplayValidateParams
Expected input number 1, I, to be one of these types:
double, single, uint8, uint16, uint32, uint64, int8, int16, int32,
int64, logical
Instead its type was struct.
Error in images.internal.imageDisplayValidateParams (line 11)
validateattributes(common_args.CData, {'numeric','logical'},...
Error in images.internal.imageDisplayParseInputs (line 79)
common_args = images.internal.imageDisplayValidateParams(common_args);
Error in imshow (line 253)
    images.internal.imageDisplayParseInputs({'Parent','Border','Reduce'},preparsed_varargin{:});
Error in Base_Lab_estudiantes (line 2)
imshow(a)
  Stephen23
      
      
 il 25 Nov 2024
				
      Modificato: Stephen23
      
      
 il 25 Nov 2024
  
			@Joaquin: the comment given by Areej Nayab will not work, because LOAD returns a structure (with one field of each variable in the MAT file). However, IMSHOW does not accept a structure as its input. The error message states what inputs types it accepts.
You will need to know the fieldname and refer to that, e.g.:
S = load(..)
imshow(S.YourFieldnameHere)
See:
Risposte (3)
  Image Analyst
      
      
 il 27 Mar 2014
        Spcify the full path of your file
folder = 'c:\whatever........';  % You specify this!
fullMatFileName = fullfile(folder,  'wheel_rail_AW.mat')
if ~exist(fullMatFileName, 'file')
  message = sprintf('%s does not exist', fullMatFileName);
  uiwait(warndlg(message));
else
  s = load(fullMatFileName);
end
  smriti garg
 il 28 Mar 2015
        
      Modificato: Walter Roberson
      
      
 il 25 Nov 2024
  
      I just got a more user-friendly way of selecting a *.mat file, so thought to share:
[fileName,filePath] = uigetfile('*', 'Select data file', '.');
if filePath==0, error('None selected!');
end
U = load( fullfile(filePath,fileName) );
enjoy!!
  abdelilah mbarek
 il 9 Giu 2018
        use :
whos -file fileName.mat
fileName.mat should be in matlab path
1 Commento
  Walter Roberson
      
      
 il 9 Giu 2018
				That could tell you which variables are in the file, but does not load the data from the file.
Vedere anche
Categorie
				Scopri di più su Workspace Variables and MAT Files in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!










