I'm trying to change marker size in a graph
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I'm trying to change marker size in a graph but i keep getting this error and dot know how to fix it
0 comentarios
Respuestas (1)
VBBV
el 6 de Nov. de 2022
markerSize_types = 12;
4 comentarios
Walter Roberson
el 7 de Nov. de 2022
markerSize_types = 1:5;
Note that Marker Size default is 6 so Marker Size 1 is pretty small.
VBBV
el 7 de Nov. de 2022
Editada: VBBV
el 7 de Nov. de 2022
markerSize_types = randi([1 12],10) % define range of markersize
[r c] = size(markerSize_types);
random_index = randi([1 r*c],1) % randomly inditialize value
random_markerSize = markerSize_types(random_index) % pick the value using index from type vector
Ver también
Categorías
Más información sobre MATLAB Compiler 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!