Creating Mat file using execl file
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Yuvaraj Venkataswamy
2018-6-14
Use below commands.
if true
Input=xlsread('your_file.xls');
save Input.mat
end
3 个评论
Yuvaraj Venkataswamy
2018-6-14
Then can define it as variable like below,
A=input;
Then use it for further processing.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!