Creating Mat file using execl file
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Davide Di Pasquale
il 14 Giu 2018
Commentato: Yuvaraj Venkataswamy
il 14 Giu 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 Commenti
Risposta accettata
Yuvaraj Venkataswamy
il 14 Giu 2018
Use below commands.
if true
Input=xlsread('your_file.xls');
save Input.mat
end
3 Commenti
Yuvaraj Venkataswamy
il 14 Giu 2018
Then can define it as variable like below,
A=input;
Then use it for further processing.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Spreadsheets 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!