Filter löschen
Filter löschen

Change location of legend in a legned(h,{.....}) format

2 Ansichten (letzte 30 Tage)
monkey_matlab
monkey_matlab am 25 Okt. 2016
Beantwortet: Star Strider am 25 Okt. 2016
Hello,
I was using the example found on the "Train SVM Classifiers" and there is this command to draw the legend:
legend(h,{'-1','+1','Support Vectors'});
I tried to change the location of the legend by typing:
legend(h,{'-1','+1','Support Vectors','Location', 'northwest'});
but this line did not work and give me the error "Warning: Ignoring extra legend entries. ..."
How do I go about changing the location of the legend in this case? Thanks!

Antworten (1)

Star Strider
Star Strider am 25 Okt. 2016
Try this:
legend(h,{'-1','+1','Support Vectors'},'Location', 'northwest');

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by