当前位置:首页 > 技术杂谈 > 正文

压缩感知(六)

2024-03-31 技术杂谈

常用测量矩阵及matlab实现

随机高斯测量矩阵

function [ Phi ] = GaussMtx( M,N )
%GaussMtx Summary of this function goes here
%Generate Bernoulli matrix
%M -- RowNumber
%N -- ColumnNumber
%Phi -- The Gauss matrix

%% Generate Gauss matrix  
    Phi = randn(M,N);
    %Phi = Phi/sqrt(M);
end

随机贝努力测量矩阵

function [ Phi ] = BernoulliMtx( M,N )

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/a/17384.html