필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
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

채택된 답변

Image Analyst
Image Analyst 2018년 6월 15일
Specify the 'FaceAlpha' opacity/transparency factor:
fill(x2, y2, 'c', 'FaceAlpha', 0.6)
  댓글 수: 4
Walter Roberson
Walter Roberson 2018년 6월 16일
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')

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Blue에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by