필터 지우기
필터 지우기

Error while using dot notation

조회 수: 1 (최근 30일)
Rightia Rollmann
Rightia Rollmann 2017년 2월 18일
답변: Star Strider 2017년 2월 18일
I execute the following code but I get the error "Insufficient number of outputs from right hand side of equal sign to satisfy assignment." I am using MATLAB R2016a.
plot(rand(3))
lgd = legend;
c = lgd.TextColor;
lgd.TextColor = 'red';

채택된 답변

Star Strider
Star Strider 2017년 2월 18일
It works correctly if you provide legend with something to do:
plot(rand(3))
lgd = legend('Data');
c = lgd.TextColor;
lgd.TextColor = 'red';

추가 답변 (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