How to modify the colobar settings?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ravindu Lokuliyana
el 31 de Oct. de 2019
Respondida: meghannmarie
el 5 de Nov. de 2019
Just a simple question!!
How can I obtain following requirement for the colorbar?
- add units
- move colobar tilte to the desired position
0 comentarios
Respuesta aceptada
meghannmarie
el 5 de Nov. de 2019
You could try this:
c = colorbar;
units = ' m';
c.TickLabels{end} = [c.TickLabels{end} units];
c.Location = 'westoutside';
0 comentarios
Más respuestas (1)
meghannmarie
el 31 de Oct. de 2019
c = colorbar;
units = 'm';
c.TickLabels = cellfun(@(x) [x ' ' units], c.TickLabels, 'UniformOutput', false)
c.Position = [left,bottom, width,height];
2 comentarios
Ver también
Categorías
Más información sobre Axis Labels 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!