资源简介
稀疏贝叶斯学习是一种很好压缩感知,信号恢复方法。
代码片段和文件信息
% Goal: Show how to use MSBL in noiseless case
% Author: Zhilin Zhang (z4zhang@ucsd.edu)
% Date: March 05 2011
% Version: 1.0
clear all;
% Experiment Assignment
iterNum = 50; % Trial number (i.e. number of repeating the experiment)
% Problem dimension
N = 25; % Row number of the dictionary matrix
M = 100; % Column number of the dictionary matrix
L = 4; % Number of measurement vectors
K = 12; % Number of nonzero rows (i.e. source number) in the solution matrix
for it = 1 : iterNum
fprintf(‘\n\nTrial #%d:\n‘it);
% Generate dictionary matrix with columns draw uniformly from the surface of a unit hypersphere
Phi = randn(NM);
Phi = Phi./
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-05-24 01:16 MSBL_code\
文件 2472 2011-05-24 01:17 MSBL_code\demo_noiseless.m
文件 3835 2011-05-24 01:15 MSBL_code\demo_noisy.m
文件 6331 2011-05-24 01:05 MSBL_code\MSBL.m
文件 1912 2011-01-14 02:12 MSBL_code\perfSupp.m
相关资源
- naive_bayes_numeric 利用matlab实现的朴素贝
- romp 图像处理
- Wavelet_OMP
- OMP 小波变换和压缩感知中的OMP算法比
- huffman huffman编码用于图像的压缩和解
- txlb 数字图像处理中的滤波和傅里叶压
- imagesegmentation 压缩文件里有四种图像
- OMP
- daopin 将压缩感知应用于基于训练序列
- sparse
- KSVD 图像稀疏编码的方法
- Bayes-Matting 抠图中最为经典和基本的算
- CS 关于压缩感知重构算法
- CS-OMP-wavelet-reconstruction
- Professor-Lu-Wusheng-lecture 陆吾生教授是加
- img_bp 图像信号的压缩感知重构算法
- fastlaplacemorian 压缩感知的几种算法算
- Compressed-sensing-denoising-code 压缩感知去
- MyOMP 一个简单的运用正交匹配追踪算
- CS_recovery_algorithms 压缩感知常见算法参
- CS 压缩感知代码
- ISAR-Imaging-With-MATLAB-Algorithms 这本书提
- CSBP_matlab 用于压缩感知的基追踪(B
- location 室内定位算法
- DeNoising 压缩感知重构算法去噪方法
- text-classification 分别使用最近邻(KN
- Compressive_Sensing 压缩感知图像融合算法
- OMP 这里主要是压缩感知的贪婪算法
- luwusheng 陆吾生教授的压缩感知材料
- fusion
评论
共有 条评论