accessible property for an instance
2 ビュー (過去 30 日間)
古いコメントを表示
i want to give a name to the x-axes ,i wrote this command in the openingfcn
set(get(axes1,'XLable'), 'String','time');
but is does not work ,when i run it i become on the command window
The name 'XLable' is not an accessible property for an instance of class 'axes'.
where is the Problem ?
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 12 月 19 日
編集済み: Azzi Abdelmalek
2013 年 12 月 19 日
Why not
xlabel('time')
And in your code there is a mistake, it's xlabel not xlable
set(get(gca,'xlabel'),'string','time')
2 件のコメント
Azzi Abdelmalek
2013 年 12 月 19 日
Like you did it without the mistake xlable. If axe1 is your axe
set(get(axe1,'xlabel'),'string','time')
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!