RadarURL

논문
2013.02.01 21:58

MATLAB Function Reference - legend

조회 수 4232 추천 수 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

?

공부 게시판

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

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 [공지] 공부 게시판 입니다. 처누 2003.08.18 928125
218 업무 알아두면 좋은 직장인 용어 정리 file JaeSoo 2025.04.15 37
217 업무 국내에서 의사가 되는 로드맵 file JaeSoo 2024.07.02 30
216 업무 병원 의학 용어 정리 - 병원 과별 축약어 (ent, os, ps, gs, np, obgy, cv, NE, ID, er, ur, em, ge, pd, nicu..) JaeSoo 2024.04.09 36
215 업무 모달리티(Modality) file JaeSoo 2024.02.06 394
214 업무 [ 개발자 업무 파악 ] SI와 SM의 차이와 하루일과 출처: https://bnitech.tistory.com/19 [코딩몬의 하루:티스토리] JaeSoo 2023.12.29 1480
213 업무 의과 대학에서 받는 학위의 종류와 과정에 대한 이야기 file JaeSoo 2023.12.07 1229
212 업무 ARO(Academic Research Organization), CRO(Contract Research Organization) 차이 JaeSoo 2023.06.23 591
211 취업 계약직 직원 지칭하는 명칭 : 임기제(계약직), 개방형직위, 별정직, 전문직위제, 기간제 등 file JaeSoo 2023.05.10 1028
210 업무 (자격증) AWS아키 따는 법 -2023 JaeSoo 2023.04.10 77
209 업무 기술사 학습 루틴 file JaeSoo 2023.04.10 78
208 업무 정보처리기술사 독학 vs 학원 JaeSoo 2023.04.10 75
207 업무 IT 기술사회 정보관리기술사 컴퓨터시스템응용기술사 공개설명회 JaeSoo 2023.04.10 30
206 업무 정보관리냐? 컴퓨터시스템응용이냐? 선택의 기로에 있다면 JaeSoo 2023.04.10 35
205 업무 CIO (최고 정보 책임자) file JaeSoo 2023.03.24 172
204 업무 전국 병원 병상수 및 순위 총정리 (22.09) file JaeSoo 2023.03.24 161
203 업무 입찰의 종류와 특징 JaeSoo 2016.08.10 233
202 업무 프로세스 BRR, PI, BPM, PS 등 개념부터 명확히 file JaeSoo 2016.05.25 659
201 업무 공공기관 정보화 예산 수요예보 및 확정예산 현황 JaeSoo 2016.05.02 409
200 취업 정보시스템 감리 회사 근무 JaeSoo 2016.02.11 798
199 업무 조달청에 조달요청할 수 있는 수요기관의 범위는? - 조달청 수요기관 고시세부내역 JaeSoo 2016.02.01 637
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 Next
/ 11


즐겨찾기 (가족)

JAESOO's HOMEPAGE


YOUNGAE's HOMEPAGE


장여은 홈페이지


장여희 홈페이지


장여원 홈페이지


즐겨찾기 (업무)

알리카페 홀릭

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

말레이시아 KL Sentral 한국인 GuestHouse


즐겨찾기 (취미)

어드민아이디

유에코 사랑회

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

JServer.kr

제이서버 메타블로그

재수 티스토리


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

재수 강의 홈페이지


한소리


VTMODE.COM


숭실대 인공지능학과


숭실대 통신연구실


베너