RadarURL

논문
2013.02.01 21:58

MATLAB Function Reference - legend

조회 수 5065 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부

legend

Display a legend on graphs

Syntax

  • legend('string1','string2',...)
    legend(h,'string1','string2',...)
    legend(string_matrix)
    legend(h,string_matrix)
    legend(axes_handle,...)
    legend('off')
    legend('hide')
    legend('show')
    legend('boxoff')
    legend('boxon')
    legend(h,...)
    legend(...,pos)
    h = legend(...)
    [legend_h,object_h,plot_h,text_strings] = legend(...)
    

Description

legend places a legend on various types of graphs (line plots, bar graphs, pie charts, etc.). For each line plotted, the legend shows a sample of the line type, marker symbol, and color beside the text label you specify. When plotting filled areas (patch or surface objects), the legend contains a sample of the face color next to the text label.

legend('string1','string2',...) displays a legend in the current axes using the specified strings to label each set of data.

legend(h,'string1','string2',...) displays a legend on the plot containing the handles in the vector h, using the specified strings to label the corresponding graphics object (line, bar, etc.).

legend(string_matrix) adds a legend containing the rows of the matrix string_matrix as labels. This is the same as legend(string_matrix(1,:),string_matrix(2,:),...).

legend(h,string_matrix) associates each row of the matrix string_matrix with the corresponding graphics object in the vector h.

legend(axes_handle,...) displays the legend for the axes specified by axes_handle.

legend('off'),legend(axes_handle,'off') removes the legend in the current axes or the axes specified by axes_handle.

legend('hide'), legend(axes_handle,'hide') makes the legend in the current axes or the axes specified by axes_handle invisible.

legend('show'), legend(axes_handle,'show') makes the legend in the current axes or the axes specified by axes_handle visible.

legend('boxoff'), legend(axes_handle,'boxoff') removes the box from the legend in the current axes or the axes specified by axes_handle.

legend('boxon'), legend(axes_handle,'boxon') adds a box to the legend in the current axes or the axes specified by axes_handle.

legend_handle = legend returns the handle to the legend on the current axes or an empty vector if no legend exists.

legend with no arguments refreshes all the legends in the current figure.

legend(legend_handle) refreshes the specified legend.

legend(...,pos) uses pos to determine where to place the legend.

  • pos = -1 places the legend outside the axes boundary on the right side.
  • pos = 0 places the legend inside the axes boundary, obscuring as few points as possible.
  • pos = 1 places the legend in the upper-right corner of the axes (default).
  • pos = 2 places the legend in the upper-left corner of the axes.
  • pos = 3 places the legend in the lower-left corner of the axes.
  • pos = 4 places the legend in the lower-right corner of the axes.

[legend_h,object_h,plot_h,text_strings] = legend(...) returns:

  • legend_h - handle of the legend axes
  • object_h - handles of the line, patch and text graphics objects used in the legend
  • plot_h - handles of the lines and patches used in the plot
  • text_strings - cell array of the text strings used in the legend.

These handles enable you to modify the properties of the respective objects.

Remarks

legend associates strings with the objects in the axes in the same order that they are listed in the axes Children property. By default, the legend annotates the current axes.

MATLAB displays only one legend per axes. legend positions the legend based on a variety of factors, such as what objects the legend obscures.

legend installs a figure ResizeFcn, if there is not already a user-defined ResizeFcn assigned to the figure. This ResizeFcn attempts to keep the legend the same size.

Moving the Legend

You can move the legend by pressing the left mouse button while the cursor is over the legend and dragging the legend to a new location. Double clicking on a label allows you to edit the label.

Examples

Add a legend to a graph showing a sine and cosine function:

  • x = -pi:pi/20:pi;
    plot(x,cos(x),'-ro',x,sin(x),'-.b')
    h = legend('cos','sin',2); 

    graphiae.gif

In this example, the plot command specifies a solid, red line ('-r') for the cosine function and a dash-dot, blue line ('-.b') for the sine function.

See Also

LineSpec, plot

Adding a Legend to a Graph for more information on using legends

Annotating Plots for related functions

 

출처 : http://www.weizmann.ac.il/matlab/techdoc/ref/legend.html

?

공부 게시판

공부에 도움되는 글을 올려주세요.

  1. [공지] 공부 게시판 입니다.

    Date2003.08.18 By처누 Views944562
    read more
  2. MariaDB my.cnf 설정 파일

    Date2026.03.03 Category데이터베이스 ByJaeSoo Views1
    Read More
  3. MariaDB 설정 파일 개요와 구조

    Date2026.03.03 Category데이터베이스 ByJaeSoo Views1
    Read More
  4. EMR을 기반으로 DW를 구축한 병원의 CRM 활용 방안 연구 = The Study on a Plan to Activate Customer Relationship Management through Data Warehouse based on Electronic Medical Record of Hospitals

    Date2026.02.06 Category논문 ByJaeSoo Views70
    Read More
  5. 호스팅케이알(hosting.kr) 도메인 가격 2배 인상으로 인한 도메인 기관 이전

    Date2026.01.16 Category인터넷 ByJaeSoo Views34
    Read More
  6. 올바른 자위습관을 가져야 하는 이유

    Date2026.01.12 Category건강 ByJaeSoo Views151
    Read More
  7. 대한민국 결정사 직업 등급표

    Date2026.01.09 Category연애 ByJaeSoo Views142
    Read More
  8. 알아두면 유용한 향수 향 종류 모음

    Date2026.01.09 Category생활 ByJaeSoo Views98
    Read More
  9. 로그인 구글 드라이브 안 쓰고 시놀로지 드라이브 쓰는 이유, 설정 방법 & 활용팁

    Date2026.01.08 Category업무 ByJaeSoo Views125
    Read More
  10. SMB 다중 채널 관리

    Date2026.01.08 Category네트워크 ByJaeSoo Views122
    Read More
  11. Synology NAS SMB 3.0 Multichannel 이용하기

    Date2026.01.08 Category네트워크 ByJaeSoo Views148
    Read More
  12. 어떻게 SSH를 통해 root 권한으로 DSM/SRM에 로그인할 수 있습니까?

    Date2026.01.08 Category네트워크 ByJaeSoo Views122
    Read More
  13. 시놀로지 나스 SMB 3.0 멀티채널 구성하는법

    Date2026.01.08 Category네트워크 ByJaeSoo Views111
    Read More
  14. RWA(Real-World Assets): 실물자산 토큰화 이해

    Date2026.01.05 Category경제 ByJaeSoo Views118
    Read More
  15. 그루밍성범죄와 가스라이팅 차이점, 처벌 수위 알아보기

    Date2025.12.23 Category생활 ByJaeSoo Views197
    Read More
  16. 전문의가 추천하는 자위 횟수

    Date2025.12.23 Category건강 ByJaeSoo Views197
    Read More
  17. 일상에 쉽게 적용할 수 있는 수면 관리 앱 5가지

    Date2025.12.18 Category모바일 ByJaeSoo Views227
    Read More
  18. 매일 밤에 머리 감으면 일어나는 일ㅣ탈모 전문가가 알려주는 충격적인 진실ㅣ김주용 원장 1편ㅣ닥터딩요

    Date2025.12.11 Category건강 ByJaeSoo Views218
    Read More
  19. 다친 손가락에 끼우는 실리콘 손가락

    Date2025.12.11 Category건강 ByJaeSoo Views238
    Read More
  20. 성적 취향에 대하여...

    Date2025.12.09 Category연애 ByJaeSoo Views388
    Read More
  21. fwb(Friends with Benefits)에 대해

    Date2025.12.09 Category연애 ByJaeSoo Views372
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 127 Next
/ 127


즐겨찾기 (가족)

JAESOO's HOMEPAGE


YOUNGAE's HOMEPAGE


장여은 홈페이지


장여희 홈페이지


장여원 홈페이지


즐겨찾기 (업무)

알리카페 홀릭

숭실대 컴퓨터 통신연구실 (서창진)

말레이시아 KL Sentral 한국인 GuestHouse


즐겨찾기 (취미)

어드민아이디

유에코 사랑회

아스가르드 좋은사람/나쁜사람

JServer.kr

제이서버 메타블로그

재수 티스토리


즐겨찾기 (강의, 커뮤니티)

재수 강의 홈페이지


한소리


VTMODE.COM


숭실대 인공지능학과


숭실대 통신연구실


베너