How to hide the units label on an axis
10 views (last 30 days)
Show older comments
Hello,
I'm trying to hide the units label on an axis-name.
![](https://www.mathworks.com/matlabcentral/images/broken_image.png)
By units label, I mean the "(deg)" on this picture. I need a plot in a different language than English, so the units have a different name.
Ata
0 Comments
Accepted Answer
Sean de Wolski
on 20 May 2013
Edited: Sean de Wolski
on 20 May 2013
How are you generating the figure?
Would the following take care of it?
ylabel('Phase')
More per clarification. There is probably an option for bodeplot to turn this off but here is a workaround that just removes it:
hFig = figure;
sys = rss(5);
h = bodeplot(sys);
labels = findall(hFig,'Type','Text');
label = labels(strncmp(get(labels,'String'),'Phase',5));
set(label,'String',regexprep(get(label,'String'),'(\(\w*))',''));
3 Comments
More Answers (0)
See Also
Categories
Find more on Axis Labels in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!