Plotting two contourf plots on the same plot
Show older comments
Hello,
I am trying to plot two data matrices on the same plot. However, I do not know how to adjust the transparancy of one of the plots.
The code is shown below with the attached data of Z1 and Z2.
If I try to plot the on top of each other just like the code of figure (3), the data values of the Z1 will not fully be visible since the Z2 data will be on top of it.
Is there a way to adjust the transparency of the plotted Z2 data so that the the full Z1 data will be visible?
And, is there a possibility to change the color of each contourf plot?
Thank you for your time,
Elie Hatem
clear all;clc;
x=-pi:0.1:pi;
y=x;
[X,Y]=meshgrid(x,y);
load('motorization_data.mat','Z1','Z2')
figure(1)
contourf(X,Y,Z1,[0 0])
figure(2)
contourf(X,Y,Z2,[0 0])
figure(3)
contourf(X,Y,Z1,[0 0])
hold on
contourf(X,Y,Z2,[0 0])
hold off
5 Comments
madhan ravi
on 20 Jun 2020
Elie Hatem
on 20 Jun 2020
madhan ravi
on 20 Jun 2020
Edited: madhan ravi
on 20 Jun 2020
Elie Hatem
on 21 Jun 2020
madhan ravi
on 21 Jun 2020
Post it as answer.
Accepted Answer
More Answers (1)
Long Hoang Van
on 24 Sep 2021
0 votes
clear all;clc;
x=-pi:0.1:pi;
y=x;
[X,Y]=meshgrid(x,y);
load('motorization_data.mat','Z1','Z2')
figure(1)
contourf(X,Y,Z1,[0 0])
figure(2)
contourf(X,Y,Z2,[0 0])
figure(3)
contourf(X,Y,Z1,[0 0])
hold on
contourf(X,Y,Z2,[0 0])
hold off
Categories
Find more on Contour Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!