Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Why is the alignment on my legend wrong? (2016b)
조회 수: 1 (최근 30일)
이전 댓글 표시
Whenever I try to put a legend on a plot the text ends misaligned with the line information. For instance running the code:
x = [0:.1:2]
figure
plot(x,sin(x),'b')
hold on
plot(x,cos(x),'r')
legend('sin','cos')
Produces the plot:
댓글 수: 2
Walter Roberson
2018년 7월 18일
I am not able to reproduce this on R2016b for Windows 10, operating in a Virtual Machine.
답변 (1개)
Walter
2018년 7월 25일
편집: Walter Roberson
2018년 7월 25일
I can replicate this in windows 10 R2018a.
figure(1)
for day=1:length(DOI)-1
plot(algN{day, 1}(:,3),'LineWidth',4,'Color','b')
hold on
plot(algN{day, 2}(:,3),'LineWidth',4,'Color','r')
end
hold off
xlabel('ROI')
ylabel('Spatial*Temporal corraltion')
title('Quality of alignmen')
set(gca,'FontSize',20)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!