フィルターのクリア

plot lines and stems behind the markers?

14 ビュー (過去 30 日間)
Sim
Sim 2020 年 10 月 21 日
コメント済み: Sim 2020 年 10 月 21 日
Hi, How can I put the plot lines and stems behind the markers?

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 21 日
You can use uistack(). For example, consider this code
x = 1:10;
y = rand(1,10);
hold on
s = scatter(x, y, 'filled', 'SizeData', 100);
p = plot(x, y, 'LineWidth', 2);
the line will be over the scatter points. You can bring the scatter point on top using
uistack(s, 'top')
  3 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 10 月 21 日
You can also get the handle of stem object and arrange it using uistack
s = stem(..)
Sim
Sim 2020 年 10 月 21 日
thanks a lot!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStem Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by