Creating Mat file using execl file
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Davide Di Pasquale
 le 14 Juin 2018
  
    
    
    
    
    Commenté : Yuvaraj Venkataswamy
      
 le 14 Juin 2018
            I have an excel file containing numbers in five columns and several rows. Each column represents a variable.How I can generate a mat file that recognise the varaibles? And how to call the variables for the mat file generated?
0 commentaires
Réponse acceptée
  Yuvaraj Venkataswamy
      
 le 14 Juin 2018
        Use below commands.
if true
  Input=xlsread('your_file.xls');
  save Input.mat
end
3 commentaires
  Yuvaraj Venkataswamy
      
 le 14 Juin 2018
				Use this,
if true
  load('Input.mat')
end
  Yuvaraj Venkataswamy
      
 le 14 Juin 2018
				Then can define it as variable like below,
A=input;
Then use it for further processing.
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Spreadsheets dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

