资源简介
压缩感知入门程序,快速掌握压缩感知的基本思路
代码片段和文件信息
% CS example 1
% Sensing matrix phi i s random .
% R e p r e s e n t a t i o n b a s i s Psi i s t h e c a n o n i c a l b a s i s .
% Recovering u s i n g l 1 magic .
clc
clear all
close all
n = 512; % S i g n a l l e n g t h
s = 25; % S p a r s i t y l e v e l
m = 5* s ; % Number o f measurements
f = get_sparse_fun (n s ) ;
A = get_A_random (n m) ;
y = A* f ; % Take t h e measurements
% S o l v e u s i n g l 1 magic .
path( path ‘ ./ Optimization ‘ ) ;
x0 = pinv(A)*y ; % initial guess = min energy 伪逆矩阵
tic
xp = l1eq_pd (x0A[ ]y1e-3);
%xp = l1eq_pd(x0 A At b pdtol pdmaxiter cgtol cgmaxiter)
toc
% % S o l v e u s i n g CVX.
% cvx_begin quiet
% variable xp(n) ;
% minimize (norm(xp1 ) ) ;
% subject to
% A * xp == y ;
% cvx_end
figure
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 64 2015-11-06 18:52 get_A_random.m
文件 120 2015-11-06 18:52 get_sparse_fun.m
文件 5370 2009-11-07 20:56 l1eq_pd.m
文件 3130 2015-11-06 16:36 yasuoganzhi_helloword.m
文件 911 2015-12-02 15:50 example.m
相关资源
- rcnnPfast-rcnnPfaster-rcnn 物体分割
- matlab语音变声系统
- 用于bouc-wen模型的好助手
- MATLAB语言的CNN算法的例程
- 卷积神经网络在MATLAB实现
- Control-of-Multi-terminal-VSC-HVDC
- matlab实现功率谱和相干性计算
- grey-wolf-optimizer 狼群算法的国外研究论
- hosvd算法
- 利用matlab的光流法实现显示光流的方
- ELM 极限学习机在matlab中elm函数调用示
- matlab实现的稀疏表示的遥感图像融合
- fill_Matlab Matlab实现的孔洞填充算法
- CompressiveAndApplications 《压缩感知与应
- 全面详解LTE:MATLAB建模、仿真与实现
- CNN-Toolbox matlab的深度学习工具箱
- distribution-network-reconfiguration 电力系统
- KSVD-ToolBox KSVD稀疏表示的matlab代码
- SparseAutoencoder MATLAB实现的深度学习自
- GFDM2612287
- MATLAB实现LTP和LBP算法
- bidirectional_dcdc2 双向DCDC的简单电流控
-
matlab中的分数阶simuli
nk模块 - elmd 在lmd中加入白噪声对信号进行分析
-
链路预测matlab程序(li
nkPredictionMa - matlab 代码实现的傅里叶描述子
-
UPFC_FACTS 基于Matlab/Simuli
nk建立的仿真 - 粒子群优化算(PSO-SVM)
- matlab实现滚动时域估计算法(MHE算法
- 含UI界面的三种降噪
评论
共有 条评论