線分に囲まれた領域を多角形とみなすことで色を塗ることが可能です。
下記例では、多角形とみなした領域を FILL 関数で塗りつぶしています。
x = 1:10;
y = rand(1,10);
y2 = rand(1,10);
X = [x,fliplr(x)];
Y = [y,fliplr(y2)];
fill(X,Y,'r')
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!