How to replace MATLAB icon from a figure window?
古いコメントを表示
How to replace or delete the MATLAB icon (the peaks) from a figure window?
1 件のコメント
Bruno Luong
2011 年 1 月 30 日
Replacing or altering figure icons violates Matlab license agreement.
採用された回答
その他の回答 (2 件)
Siddharth Shankar
2011 年 1 月 30 日
4 投票
As Bruno says, that would be a breach of the MathWorks license agreement. Specific details here:
4 件のコメント
Jan
2011 年 1 月 30 日
Why is this icon so important for MathWorks? Does this concerns Java windows opened from Matlab also? And if I maximize a figure such that the just the innerposition fill the complete screen and the titlebar is not visible anymore?
Siddharth Shankar
2011 年 1 月 30 日
Jan, I can't interpret the license agreement in more detail than what is outlined in that solution. If a request is made to MathWorks technical support with those questions, I am sure they will be able to provide some answers (likely after consulting the MathWorks legal team).
Vieniava
2011 年 1 月 31 日
Vieniava
2011 年 1 月 31 日
This answer is pretty old and I've bumped into it a few times, so for the sake of new users,
here's how its done. (BTW, I'm assuming a UI figure).
fig = uifigure("WindowStyle","alwaysontop");
fig.Position = [500 500 1000 445];
pathToMLAPP = fileparts(mfilename('fullpath'));
fig.Icon = fullfile(pathToMLAPP, 'my_icon.png');
カテゴリ
ヘルプ センター および File Exchange で Title についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!