AREASHADE

版本 1.0.0.0 (1.9 KB) 作者: Andreas
Shades areas between a curve and a fixed threshold.
2.9K 次下载
更新时间 2005/3/25

查看许可证

编者注: This file was a File Exchange Pick of the Week

AREASHADE(X,Y,F) shades the area where Y is larger than some fixed value F using the color yellow.

AREASHADE(X,Y,F,C) uses color C instead of yellow.

AREASHADE(X,Y,F,C,TH) where TH = 'h' uses F as a high threshold and shades the are where Y<F. Default for TH is 'l', painting Y>F.

H = AREASHADE(X,Y,F) returns a handle to the created patch.

Example:
x = [0:.5:20]; y = sin(x);
figure, plot(x,y,'o-'), hold on
areashade(x,y,1/sqrt(2),'r')
areashade(x,y,-1/sqrt(2),'b','h');
plot(xlim,1/sqrt(2)*[1 1],'k')
plot(xlim,-1/sqrt(2)*[1 1],'k')

引用格式

Andreas (2024). AREASHADE (https://www.mathworks.com/matlabcentral/fileexchange/7255-areashade), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R14SP1
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Polygons 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0