Saving a logical mask

3 ビュー (過去 30 日間)
Aaron Smith
Aaron Smith 2017 年 8 月 3 日
編集済み: Jan 2017 年 8 月 5 日
I have a code for creating a logical mask and calculating values inside the ROI of the mask. My query is: is it possible to save the logical mask to the desktop so that it can be applied to other data in the future?
  4 件のコメント
Stephen23
Stephen23 2017 年 8 月 4 日
"As a file essentially so that in future I can just apply it to matrices. If this is possible"
It is possible and my answer shows you the simplest and most efficient way of doing this. Did you try it?
Jan
Jan 2017 年 8 月 5 日
編集済み: Jan 2017 年 8 月 5 日
@Aaron: I repeat my question: Does "save to the desktop" mean the path:
C:\Users\<USERNAME>\Desktop
? Or do you mean the desktop window of Matlab? Storing it on the desktop of the OS might be less convenient than storing it in the user path of Matlab.

サインインしてコメントする。

採用された回答

Stephen23
Stephen23 2017 年 8 月 3 日
編集済み: Stephen23 2017 年 8 月 5 日
Simply save it in a .mat file:
save('nameOfFile.mat','nameOfVariable')
and then load it back into memory:
S = load('nameOfFile.mat');
mask = S.nameOfVariable;
Use the relevant absolute/relative path to save it on the desktop.
  1 件のコメント
Jan
Jan 2017 年 8 月 5 日
編集済み: Jan 2017 年 8 月 5 日
Explicitly:
desktop = fullfile(getenv('USERPROFILE'), 'Desktop');
save(fullfile(desktop, 'nameOfFile.mat'), 'nameOfVariable')
But I'd prefer the userpath of Matlab instead of polluting the OS's desktop.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by