• 大小: 1.87KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: Matlab
  • 标签: matlab  

资源简介


可以用于在matlab中根据曲线画出阴影,用于表示置信区间的一种方法。

资源截图

代码片段和文件信息

function[fillhandlemsg]=jbfill(xpointsupperlowercoloredgeaddtransparency)
%USAGE: [fillhandlemsg]=jbfill(xpointsupperlowercoloredgeaddtransparency)
%This function will fill a region with a color between the two vectors provided
%using the Matlab fill command.
%
%fillhandle is the returned handle to the filled region in the plot.
%xpoints= The horizontal data points (ie frequencies). Note length(Upper)
%         must equal Length(lower)and must equal length(xpoints)!
%upper = the upper curve values (data can be less than lower)
%lower = the lower curve values (data can be more than upper)
%color = the color of the filled area 
%edge  = the color around the edge of the filled area
%add   = a flag to add to the current plot or make a new one.
%transparency is a value ranging from 1 for opaque to 0 for invisible for
%the filled color only.
%
%John A. Bockstege November 2006;
%Example:
%     a=rand(120);%Vector of 

评论

共有 条评论