Azzera filtri
Azzera filtri

Error while using dot notation

1 visualizzazione (ultimi 30 giorni)
Rightia Rollmann
Rightia Rollmann il 18 Feb 2017
Risposto: Star Strider il 18 Feb 2017
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';

Risposta accettata

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

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by