资源简介
非常简单的计算CCDF的matlab函数,调用方便
代码片段和文件信息
function [handleCDFstats] = ccdfplot(x)
%CDFPLOT Display an empirical cumulative distribution function.
% CDFPLOT(X) plots an empirical cumulative distribution function (CDF)
% of the observations in the data sample vector X. X may be a row or
% column vector and represents a random sample of observations from
% some underlying distribution.
%
% H = CDFPLOT(X) plots F(x) the empirical (or sample) CDF versus the
% observations in X. The empirical CDF F(x) is defined as follows:
%
% F(x) = (Number of observations <= x)/(Total number of observations)
%
% for all values in the sample vector X. If X contains missing data
% indicated by NaN‘s (IEEE arithmetic representation for
% Not-a-Number) the missing observations will be ignored.
%
% H is the handle of the empirical CDF curve (a Handle Graphics ‘line‘
% object).
%
% [HSTATS] = CDFPLOT(X) also returns a statistical summary structure
% with the following fields:
%
% STATS.min = minimum value of the vector X.
% STATS.max = maximum value of the vector X.
% STATS.mean = sample mean of the vector X.
% STATS.median = sample median (50th percentile) of the vector X.
% STATS.st
- 上一篇:最佳门限判决matlab实现
- 下一篇:EMD算法的绝对实用简单版MATLAB程序
相关资源
- EMD算法的绝对实用简单版MATLAB程序
- 最佳门限判决matlab实现
- 卡尔曼滤波用于自由落体运动目标跟
- matlab图像融合代码+图像
- matlab粒子群算法PSO程序,算法优化效
- 区域生长算法的MATLAB编程实现
- 对图像做垂直投影的matlab代码
- 图像二值化matlab代码
- 一维信号小波降噪matlab程序
- matlab关于二维卷积函数
- matlab关于音频lpc系数的提取
- Sudoku-九宫格-数独matlab代码
- 禁忌搜索TSP
- 数字多波束形成 matlab
- 基于matlab的贝叶斯实验平台
- LBM Midrange Repulsion
-
DAB变压器simuli
nk拓扑 - matlab系统辨识最小二乘整批算法
- [matlab] 切比雪夫多项式系数
- 阿伦方差 matlab求法
- spectral_clustering简单matlab实现
- Matlab永磁同步电机仿真模型
- 激光光斑能量分布的三维伪彩色可视
- 利用PCA降维方法处理高光谱图像matl
- 分数阶PIDmatlab设计模块
- 视觉显著性SR模型matlab
- 视觉显著性模型FTmatlab
- 基于matlab的FDTD程序实现
- 局部二值模式(Local Binary Patterns)图
- 计算ADC的动态参数
评论
共有 条评论