how to download a .mat file ?
44 次查看(过去 30 天)
显示 更早的评论
I want to know how to download a matlab data (with variables inside 15*6006 - Gain matrix) in a script function.
thank you,
2 个评论
Jan
2021-5-11
From where? Locally from your disk, from a network drive or from the internet? From an FTP/SCP-server?
回答(1 个)
EmirBeg
2021-5-11
编辑:EmirBeg
2021-5-11
load('data.mat') ; % Of course with the name of your file
It then loads all the variables in your workspace.
1 个评论
Rik
2021-5-11
You should always load to a variable. That way it is clear where your variables are coming from. This syntax will probably be invalid in a future release.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!