legend is not showing

조회 수: 11 (최근 30일)
sivalogan satchithanandamoorthy
sivalogan satchithanandamoorthy 2017년 6월 27일
댓글: Walter Roberson 2017년 6월 27일
for i=1:x %loop
figure(1)
hold on
plot(strain{i},stress{i});
legendInfo{i}=['Cycle',mat2str(cycle(i))]; %convert value to string
plot(Time{i},Value{i});
legendIn2{i}=['Simulink','DisplayName','numerical model',mat2str(cycle(i))];
hold all
end
legend(legendInfo,legendIn2)
for some reason only legendIn2 is being displayed in the plot. how to fix this? Any help would be much appricated.
siva

채택된 답변

Walter Roberson
Walter Roberson 2017년 6월 27일
legend([legendInfo; legendIn2])
  댓글 수: 3
sivalogan satchithanandamoorthy
sivalogan satchithanandamoorthy 2017년 6월 27일
there is a small problem. when legendInfo and legendIn2 have multiple graph, then error message appear.the error message is as fallows: Operands to the and && operators must be convertible to logical scalar values.
Error in legend (line 189) all(isgraphics(args{1})) % legend(children,strings,...)
Error in Cycle_stressStrain_test_model (line 67) legend([legendInfo; legendIn2]) %having multiple legend displayed
Walter Roberson
Walter Roberson 2017년 6월 27일
legend(reshape([legendInfo; legendIn2],1,[]))

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by