资源简介
使用BP算法实现的压缩感知,还有原始图像和还原图像的对比。
代码片段和文件信息
%一维信号BP重构算法
clc
clear all;
close all;
M = 200; %观测信号长度
N = 1000; %稀疏信号长度
K = 30; %稀疏度
%% -----1.生成稀疏度为K的稀疏信号-----
x0 = zeros(N1);
p = randperm(N);
x0(p(1:K)1) = rand(K1)-0.5;
%------ 高斯感知矩阵Phi -------------
Phi = sqrt(1/M) * randn(MN);
for i = 1:N
Phi(:i) = Phi(:i) / norm(Phi(:i));
end
%-------- 测量向量 y ----------
y = zeros(M1);
y = Phi * x0;
%% -----2. 含高斯白噪声观测 SNR=40dB --------
ye2 = mean(y.^2);
SNR = 40;
sgmav = sqrt( ye2*10^(-SNR/10) );
noisev = sgmav*randn(M1);
y = y + noisev;
%% ------3.BP重构算法 ----------------
相关资源
- Deep_Learning_2016.pdf
- zw_Classification1.zip
- Griffiths-IntroductiontoElectrodynamics4thEdit
- ParaViewTutorial.pdf
- xyisv_10236804.zip
- 计算机图形学第4版高清电子书.pdf
- 《多粒度知识获取与不确定性度量》
- 华成英模电课件.zip
- 70d0cd041f738f12db575d3b46e97582.pdf
- OfficeTabEnterprise13.1.zip
- wxu998.rar
- PowerDesigner16.5汉化文件.rar
- jsgis.zip
- PinyinIME(关键代码写了注释).zip
- 锁相环设计、仿真与应用第5版中.pd
- novelOnLine.zip
- SingleSensorImagingMethodsandApplicationsforDi
- ControlSystemsEngineering7th(NormanS.Nise)
- ModernControlSystems13th(RichardC.Dorf).ra
- VectorMagic_1.15pojie.rar
- complexityoflattice__problems.pdf
- xnby_883749.zip
- TOGAF培训讲义-周金根.pdf
- OS12.2驱动,手机虚拟定位软件,Loca
- 大话系列-大话数据结构(pdf高清版)
- 梁宁产品经理思维30讲.pdf
- CHI760E辰华电化学工作站软件最新版
- SAPERPHCM葵花宝典系列之配置指南(电
- TangZhuoLin.rar
- Day3_NOI.zip
评论
共有 条评论