⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fig5_12c.m

📁 matlab programming for engineers(2nd)书籍源码,这是一本很好的学习MATLAB编程书
💻 M
字号:
ray = sqrt(randn(1,10000000).^2 + randn(1,10000000).^2);
ray = ray / mean(ray) * 10;
[n,x]=hist(ray,0:1:34);
figure(3);

n = n/size(ray);
plot(x,n,'LineWidth',2);
hold on;
plot([10 10],get(gca,'Ylim'),'k-.');
plot([26 26],get(gca,'Ylim'),'r:');
legend('Noise probability distribution','Mean Noise','Detection Threshold');
title('\bfNoise distribution after detection');
xlabel('\bfAmplitude (volts)');
ylabel('\bfProbability');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -