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

8 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Image Analyst
Image Analyst el 15 de Jun. de 2018
Specify the 'FaceAlpha' opacity/transparency factor:
fill(x2, y2, 'c', 'FaceAlpha', 0.6)
  4 comentarios
Walter Roberson
Walter Roberson el 16 de Jun. de 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')

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Blue en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by