nrpshdfig.m
来自「一种基于压缩感知技术的图像重建程序」· M 代码 · 共 57 行
M
57 行
function NRPSHDFig(num)% NRPSHDFig -- callback implementing functions of NRPSHDDemoglobal NRPSHDFIGNUMNRPSHDInitif 1 <= num & num <= 6 , nihil = ~exist('NRPSHDFIGNUM'); if ~nihil, empty = isempty(NRPSHDFIGNUM); else empty = 1; end if ~empty, nil = NRPSHDFIGNUM == 0; else nil = 1; end if nil, NRPSHDInit end figname = sprintf('NRPSHDFig%g',num); clc; home; help(figname); eval(figname); RegisterPlot(figname,'{R}'); drawnow; NRPSHDFIGNUM = num;elseif num==19, % change default settings clc; home disp('There Are No Defaults to CHANGE');elseif num==20, %run all figures NRPSHDInit for num=1:6, figname = sprintf('aifig%g',num); eval(figname); RegisterPlot(figname,'{R}'); clc; home; help(figname); drawnow; NRPSHDFIGNUM = num; endelse disp('Bizarre argument in NRPSHDFig') disp(sprintf('num =%g',num))end %% Copyright (c) 2006. Victoria Stodden and David Donoho% %% 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 + -
显示快捷键?