Effacer les filtres
Effacer les filtres

How to see difference in color which has been overlapped between two fills?

2 vues (au cours des 30 derniers jours)
I have two curves; for example
clc; clear all; close all;
x1=[-1:0.01:1];
y1=1-x1.^2;
x2=[-2:0.01:2];
y2=1-x2.^2;
fill(x1,y1,'k')
hold on, fill(x2,y2,'c')
Now I want to see clear difference of color which has been overlapped.As of now can only see the dominating color (in this example, I could not see black color. I wish to see resultant color (resultant color of combination of cyan and black) of overlap. Kindly help

Réponse acceptée

Image Analyst
Image Analyst le 15 Juin 2018
Specify the 'FaceAlpha' opacity/transparency factor:
fill(x2, y2, 'c', 'FaceAlpha', 0.6)
  4 commentaires
Walter Roberson
Walter Roberson le 16 Juin 2018
x2=[-2:0.01:2];
y2=1-x2.^2;
fill(x2,y2,'c')
hold on
x1=[-1:0.01:1];
y1=1-x1.^2;
fill(x1,y1,'k','faceAlpha',0.6)
x3=[-0.5:0.01:0.5];
y3=1-x3.^2;
fill(x3,y3,'w')

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Blue dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by