Interested in changing line properties of sbioplot

2 ビュー (過去 30 日間)
Brett Fleisher
Brett Fleisher 2022 年 4 月 19 日
コメント済み: Brett Fleisher 2022 年 4 月 19 日
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!

採用された回答

Fulden Buyukozturk
Fulden Buyukozturk 2022 年 4 月 19 日
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
  1 件のコメント
Brett Fleisher
Brett Fleisher 2022 年 4 月 19 日
Ah, thank you very much!

サインインしてコメントする。

その他の回答 (0 件)

コミュニティ

その他の回答  SimBiology コミュニティ

カテゴリ

Help Center および File ExchangeImport Data についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by