how can i save the matrix in my program and use it in another program fr calculation
1 回表示 (過去 30 日間)
古いコメントを表示
saving..and tn loading from one program to another
0 件のコメント
回答 (1 件)
madhan ravi
2019 年 2 月 8 日
doc save
doc load
2 件のコメント
madhan ravi
2019 年 2 月 8 日
>> a=rand(3) % example matrix
a =
0.5667 0.4427 0.8670
0.6102 0.4562 0.8306
0.1008 0.0518 0.5182
>> save aa.mat a
Use the below in script file:
load aa
Calculation = a/2 % do whatever calculation you like
参考
カテゴリ
Help Center および File Exchange で Entering Commands についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!