Can't remove xlabel from top graph
15 ビュー (過去 30 日間)
古いコメントを表示
Picture here:

I cant seem to delete the top graphs xlabel that says X,
what I tried is:
set(handles.axes1, 'XTickLabel', [])
set(gca, 'XTickLabel', [])
xlabel('')
none of these work.
Does anyone know why?
0 件のコメント
回答 (1 件)
Titus Edelhofer
2015 年 4 月 2 日
Hi,
I guess mixing some of the techniques should work. Try
xlabel(handles.axes1, '');
Titus
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!