Error while using dot notation
6 ビュー (過去 30 日間)
古いコメントを表示
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';
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Legend についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!