a_f.m

来自「A full implementation of ICA,PCA,LDA,SVM」· M 代码 · 共 31 行

M
31
字号
% A_f.m%% Takes "scrambled Fourier" measurements.%% Usage: b = A_f(x, OMEGA, P)%% x - N vector%% b - K vector = [real part; imag part]%% OMEGA - K/2 vector denoting which Fourier coefficients to use%         (the real and imag parts of each freq are kept).%% P - Permutation to apply to the input vector.  Fourier coeffs of%     x(P) are calculated.%     Default = 1:N (no scrambling).%% Written by: Justin Romberg, Caltech% Created: October 2005% Email: jrom@acm.caltech.edu%function b = A_f(x, OMEGA, P)N = length(x);if (nargin < 3), P = 1:N;  endfx = 1/sqrt(N)*fft(x(P));b = [sqrt(2)*real(fx(OMEGA)); sqrt(2)*imag(fx(OMEGA))];

⌨️ 快捷键说明

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