Interested in changing line properties of sbioplot
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Brett Fleisher
el 19 de Abr. de 2022
Comentada: Brett Fleisher
el 19 de Abr. de 2022
Hello,
I am interested in changing the line properties (width, color, dashed/solid) of the lines in an sbioplot but cannot find how to do this. My code is the following:
d = getdose(m1, 'My Dose');
sbioplot(sbiosimulate(m1,d));
Thanks in advance!
0 comentarios
Respuesta aceptada
Fulden Buyukozturk
el 19 de Abr. de 2022
Hello,
These can be set using line object handles, for example:
ax = sbioplot(sbiosimulate(m1,d));
h = findobj(ax, 'Type', 'line');
set(h(1), 'LineStyle', '--','LineWidth', 2, 'Color', [0 0.4470 0.7410])
set(h(2), 'LineWidth', 1)
Fulden
Más respuestas (0)
Comunidades de usuarios
Más respuestas en SimBiology Community
Ver también
Categorías
Más información sobre Biotech and Pharmaceutical 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!