Using get and set command to add a title, xlabel, and ylabel?

91 vues (au cours des 30 derniers jours)
Tyler Bodnarik
Tyler Bodnarik le 29 Sep 2020
Commenté : Tyler Bodnarik le 29 Sep 2020
Is there a way to add a title and x and y axes labels to a figure by using only the get and set commands? Also, I need to change the fontsize and make them bold. It should all be done by using get and set exclusively.
Thanks in advance!
  2 commentaires
madhan ravi
madhan ravi le 29 Sep 2020
Any specific reasons to do so?
Tyler Bodnarik
Tyler Bodnarik le 29 Sep 2020
Homework

Connectez-vous pour commenter.

Réponse acceptée

Joseph Cheng
Joseph Cheng le 29 Sep 2020
You can take a look by first extracting out the current axis or assign it to a variable:
figure(1),imagesc(randi(10,10,10))
hax = gca;
disp(hax)
then you can see all the parameters you can change. by looking through the output you can see that you can change ylabel though its also an "object" so you'll need to look inside
get(hax,'Ylabel')
for an example of your ylabel and bold
set(get(hax,'Ylabel'),'String','test')
set(get(hax,'Ylabel'),'FontWeight','bold')
set(get(hax,'Ylabel'),'FontSize',15)
Additionally in newer matlabs you don't need to use set anymore but treat it as an structure and change for example fontsize by
h.YLabel.FontSize = 9

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by