how can I change the axes title in plot browser?

조회 수: 6 (최근 30일)
Gil Kolin
Gil Kolin 2018년 2월 20일
답변: Abdulrahman 2024년 9월 23일
now it "axes(no title)". I tried to put:
1)'name','my_name'
2)'title', 'my_title'
thanks
  댓글 수: 3
Gil Kolin
Gil Kolin 2018년 2월 20일
no, I have a several plot in one figure and I wanted to add title to each of them in plot browser. it's very simple. just title('my_title')
Geoff Hayes
Geoff Hayes 2018년 2월 21일
If you want to add a title to each plot, then consider using a legend.

댓글을 달려면 로그인하십시오.

답변 (1개)

Abdulrahman
Abdulrahman 2024년 9월 23일
  • Open the Plot Browser: You can open the Plot Browser by clicking on the "View" menu in the figure window and selecting "Plot Browser."
  • Select Your Plot: In the Plot Browser, select the plot for which you want to change the axes titles.
  • Edit the Axes Titles:
  • Right-click on the axes in the figure or in the Plot Browser.
  • Choose "Properties" or "Edit Axes."
  • In the properties dialog, find the options for the X and Y axis titles. You can edit them directly there.
  • Using Code: Alternatively, you can also set the titles programmatically using the following commands.
xlabel('Your X-axis Title');
ylabel('Your Y-axis Title');

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by