资源简介
matlab程序,随机生成满足伽马分布的雷达杂波信号,并与理论PDF及CDF对比
代码片段和文件信息
function [P iterations] = rand_gamma(N M b c)
%
% file: rand_gamma.m (c) Matthew Roughan Mon Apr 4 2011
% created: Mon Apr 4 2011
% author: Matthew Roughan
% email: matthew.roughan@adelaide.edu.au
%
% Generate a Gamma random variable
% “Statistical Distributions“ Evans Hastings Peacock 2nd Edition
% Wiley 1993 p.75-81
%
% INPUTS:
% (NM) = size of array of random variables to generate
% b = scale parameter > 0
% c = shape parameter > 0
%
% probability density function (pdf)
% p(x) = (x/b)^(c-1) * exp(-x/b) / (b * gamma(c))
%
% where gamma(c) is the gamma function (http://en.wikipedia.org/wiki/Gamma_function)
%
% Basic stats of the gamma distribution
% mean = b c
% variance = b^2 c
%
% generation method comes from
% http://en.wikipedia.org/wiki/Gamma_distribution#Generating_gamma-distributed_random_variables
% notation: theta = b
% k = c
% the algorithm exploits several properties
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1550 2011-04-05 01:39 license.txt
文件 2109 2011-04-05 01:21 rand_gamma.m
文件 651 2011-04-04 08:04 rand_gamma.m~
文件 481 2011-04-05 01:32 rand_gamma_test.m
文件 49 2011-04-04 08:28 rand_gamma_test.m~
文件 13502 2011-04-05 01:32 rand_gamma_test.png
相关资源
- ASTM E1381-95中文版
- 学生成绩查询系统(附源代码)
-
simuli
nk平台下的卷积码仿真 - 武汉大学数据结构考研及期末考试试
- 粒子群优化支持向量机
- IT售前如何写解决方案
- R语言机器学习-实用案例分析(代码
- S3C2440 Lcd代码(ARM9)
- 任意两点间最短路径
- sqldbx使用方法
- SQL注入源码
- user32.lib
- XilinxSpartan上实现31条MIPS指令流水线
- 图像匹配
- cordova集成RS232串口通讯
- Quartus_II_9.1破解器
- DDR SDRAM控制器调试心得
- 2019年中国海洋大学数据结构博士入学
- mfc42d.dll26795
- U盘制作完整电路图,dxp画的
- mm1但服务台排队模型
- adc (模数转换)显示到数码管,检测
- 杭州市geo.json
- MUSIC算法估计功率谱
-
entity fr
amework code first增删改查(包 - QPBO和DD算法对比的中文报告
- AM发射系统
- Spring MVC上传文件
- DGNSS数据传输格式RTCM3_2的介绍及解码
- [LabVIEW]DIY双按钮对话框
评论
共有 条评论