How do you change the transparency of multiple lines using "plot" if the lines are all different colors?

72 ビュー (過去 30 日間)
Im trying to plot 15 lines in a single graph. Each line is a different color and would like all of them to be semi-transparent (alpha =0.2). Alpha does not work and when I use the 'Color' [value value value 0.2] it changes all the lines to the same color.

回答 (1 件)

Les Beckham
Les Beckham 2022 年 9 月 28 日
編集済み: Les Beckham 2022 年 9 月 28 日
h = plot(rand(5)); % example plot. When you make your plot be sure to capture the handle
% now set the alpha on all the lines in the plot handle h
for i=1:numel(h)
c = get(h(i), 'Color');
set(h(i), 'Color', [c 0.2]);
end
grid on
  3 件のコメント
Les Beckham
Les Beckham 2023 年 5 月 4 日
Interesting. You're right, it doesn't work in a Live Script.
I would report that as a bug. Scroll down to the bottom of this page and click the "Contact Support" link under the Get Support heading.
Walter Roberson
Walter Roberson 2023 年 5 月 4 日
the ability to add transparency to line objects is undocumented, and has some notable restrictions:
  • does not work for Livescript
  • transparency is not saved if you save to a .fig
  • an implication of the above is that transparency of this kind is not saved if you pass graphic objects to or from parallel workers or background pools.

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

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by