How to make contourf image semitransparent?

I am using contourf to plot a 2D image in jet like below. Now I plan to make it semitransparent, therefore I may add some more lines. I tried all solutions searched online. Seems not working. Would anyone help me out?

 Akzeptierte Antwort

Bhanu Prakash
Bhanu Prakash am 11 Jul. 2024
Bearbeitet: Adam Danz am 12 Jul. 2024

0 Stimmen

Hi,
Starting in R2022b, to control the transparency of a 'contourf' plot, you can use the 'FaceAlpha' property in MATLAB. Here is an sample code for the same:
Z = peaks;
[M,c] = contourf(Z);
The range of 'FaceAlpha' is [0,1] with the deafult value being '1':
>> c.FaceAlpha
ans =
1
If you want to reduce the transparency, you can decrease the value of 'FaceAlpha' as follows:
c.FaceAlpha=0.3
Hope this helps!

3 Kommentare

DGM
DGM am 12 Jul. 2024
Bearbeitet: DGM am 12 Jul. 2024
IIRC, this functionality requires R2022b or newer. While it's probably the appropriate answer today, older versions require different approaches.
Adam Danz
Adam Danz am 12 Jul. 2024
Thanks @Bhanu Prakash & @DGM, I added the release info to the answer.
DGM
DGM am 12 Jul. 2024
Thanks Adam. Idk what happened there, but this is a good outcome.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Version

R2019b

Tags

Gefragt:

JZ
am 2 Aug. 2022

Kommentiert:

DGM
am 12 Jul. 2024

Community Treasure Hunt

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

Start Hunting!

Translated by