📄 myop_witharg.m
字号:
function x = MyOp_witharg(s,SubSet)%% Copyright (c) 2007 Thomas Blumensath%% The University of Edinburgh% Email: thomas.blumensath@ed.ac.uk% Comments and bug reports welcome%% This file is part of sparsity Version 0.1% Created: April 2007%% Part of this toolbox was developed with the support of EPSRC Grant% D000246/1%% Please read COPYRIGHT.m for terms and conditions.ls=length(s);if rem(ls/2,1); error('We require input to MyOp_witharg to be of even length.') endS= 1/sqrt(sum(SubSet)) * fft(s);x=[real(S(SubSet)) ; imag(S(SubSet))];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -