Creating Mat file using execl file
1 view (last 30 days)
Show older comments
Davide Di Pasquale
on 14 Jun 2018
Commented: Yuvaraj Venkataswamy
on 14 Jun 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 Comments
Accepted Answer
Yuvaraj Venkataswamy
on 14 Jun 2018
Use below commands.
if true
Input=xlsread('your_file.xls');
save Input.mat
end
3 Comments
Yuvaraj Venkataswamy
on 14 Jun 2018
Then can define it as variable like below,
A=input;
Then use it for further processing.
More Answers (0)
See Also
Categories
Find more on Spreadsheets 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!