HOW TO CHANGE WINDOWS NAME
2 ビュー (過去 30 日間)
古いコメントを表示
HOW TO CHANGE WINDOWS NAME
0 件のコメント
回答 (1 件)
Muath
2024 年 9 月 8 日
編集済み: Muath
2024 年 9 月 8 日
I believe you are referring to the window for the figures. If it was the case then you can use:
figure('Name','Test')
This will give you a window with this name:
Figure 1: Test
If you want to remove Figure 1 part you have to use this:
figure('Name','Test','NumberTitle','off');
This will give a window with this name:
Test
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!