how to download a .mat file ?
45 ビュー (過去 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.
参考
カテゴリ
Help Center および File Exchange で Downloads についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!