当前位置:网站首页>绘制概率密度图
绘制概率密度图
2022-07-30 01:46:00 【studyer_domi】
1、内容简介
略
443可以交流、咨询、答疑
2、内容说明
略
3、仿真分析
clc
close all
clear
miu = 0.5;
delta = 0.5;
r = 0.1:0.1:10;
p1 = 1/sqrt(2*pi)/miu./r.*exp(-(log(r)-miu).^2/2/delta^2);
delta = 1;
p2 = 1/sqrt(2*pi)/miu./r.*exp(-(log(r)-miu).^2/2/delta^2);
figure
plot(r,p1,r,p2)
legend('{\mu=0.5,\sigma=0.5}','{\mu=0.5,\sigma=1}')
xlabel('接受信号包络','fontsize',12)
ylabel('概率密度函数','fontsize',12)
grid on
set(gcf,'color','w');
4、参考论文
略
边栏推荐
- Object.freeze() learning
- 经济衰退时期的对比:如今更像历史上的哪段时期?
- mysql 报错 is too long for user name (should be no longer than 16)
- diff和key的作用
- CAPL中的键值对(hash)数据类型
- 数据流图、数据字典
- The Rising Star of Interface Test Automation-YApi Interface Management Platform
- [深入研究4G/5G/6G专题-45]: 5G Link Adaption链路自适应-1-总体架构
- LeetCode 2348. Number of all-zero subarrays
- 泰克Tektronix示波器软件TDS210|TDS220|TDS224上位机软件NS-Scope
猜你喜欢
随机推荐
初级测试人员如何快速成长
Fabric Writing Case Chaincode
短期风电预测(Matlab代码实现)
Fabric Private Data Case
机械设备制造企业如何借助ERP系统,解决成本核算难题?
ROS 2知识:通信协议 DDS/RTPS
mysql error is too long for user name (should be no longer than 16)
Push the image to the Alibaba Cloud private warehouse
推荐系统:特征工程、常用特征
LeetCode 2342. Digital and equal number of one of the biggest and
OSPF shamlink 解决后门链路问题
CAPL中的键值对(hash)数据类型
什么专业越老越吃香?
推荐系统:用户“行为数据”的采集【使用Kafaka、Cassandra处理数据】【如果与业务数据重合,也需要独自采集】
anaconda打开闪退解决
Recommendation systems: feature engineering, common features
基于SSM实现个性化健康饮食推荐系统
The Rising Star of Interface Test Automation-YApi Interface Management Platform
利用ESP32构造一个ZIGBEE的网络发送转接
华为“天才少年”稚晖君又出新作,从零开始造“客制化”智能键盘









