Insert a table in a figure with the colour specifications of the lines!
    조회 수: 2 (최근 30일)
  
       이전 댓글 표시
    
Hallo! I have plot plotted three differet lines in a figure and I want to insert a table(box) to specify each of them based on their colour!
for example. 'blue line' controls 'green line' relatives 'red line' patients
댓글 수: 0
채택된 답변
  Star Strider
      
      
 2017년 5월 19일
        Use the legend function.
figure(1)
plot(x1, control, '-b', x2, relatives, '-g', x3, patients, '-r')
grid
legend('Controls', 'Relatives', 'Patients')
You can control where the legend appears in the plot with the 'Location' name-value oair. See the documentation for details.
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

