inv_fht.m

来自「SparseLab is a Matlab software package d」· M 代码 · 共 23 行

M
23
字号
function y = Inv_FHT(x)
% Inv_FHT: Computes the inverse Hadamard transform of a signal
%  Usage:
%    y = Inv_FHT(x);
%  Inputs:
%    x      Hadamard transform coefficients
%  Outputs:
%    y      signal
%
% Description
%   Inv_FHT applies the forward Hadamard transform, since it is a self-adjoint operator.
% See Also
%   FHT

y = FHT(x);
%% Part of SparseLab Version:100% Created Tuesday March 28, 2006% This is Copyrighted Material% For Copying permissions see COPYING.m% Comments? e-mail sparselab@stanford.edu%

⌨️ 快捷键说明

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