Channing color, marker size and type in a gscatter
Mostrar comentarios más antiguos
I am trying to change the color in a gscatter plot with the maker size and type as below. I could not change the color and size. Anyway to help please
Field_Size = rand(1,8);
tau = rand(1,8);
Field = 1:8;
color = [0.19608 0.80392 0.19608, 0.72941 0.33333 0.83922, 1,0];
markers = {'s' '^' 'p' 'h' 'v' 'd' 'x' 'o'};
figure
ylabel('\tau^{*} (Year)')
xlabel('Field Size (TSCF)')
gsh = gscatter(Field_Size,tau,Field);
% Set markers
%must match number of groups!
set(gsh,{'Marker'}, markers(:))
% fill markers
set(gsh,{'MarkerFaceColor'}, color)
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Surface and Mesh Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
