position of legend contour plot
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Michiel
el 7 de Mzo. de 2015
Comentada: Star Strider
el 7 de Mzo. de 2015
I have a contour plot obtained via the function "contour", and it places the legend inside the figure. For regular plots there is this additional option to specify the location of the legend, however it does not seem to exist for the contour function. Is there anyway I can move it outside of the figure?
0 comentarios
Respuesta aceptada
Star Strider
el 7 de Mzo. de 2015
Editada: Star Strider
el 7 de Mzo. de 2015
Use one of the ‘...outside’ 'Location' options:
M = magic(10);
figure(1)
contour(M)
legend('Data','Location','northeastoutside')
2 comentarios
Star Strider
el 7 de Mzo. de 2015
There are version differences, so the exact syntax can vary. This works with R2014b.
Más respuestas (0)
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!