clearallpipevar.m
来自「Matlab雷达工具箱」· M 代码 · 共 58 行
M
58 行
%CLEARALLPIPEVAR Clears all global pipe variables when using DBTLINK.%%--------%Synopsis:% clearallpipevar%%Description:% Clears all global pipe variables when using DBTLINK. Global pipe% variables are defined as global variables whose name start with "pipeVar".%%Input:%%Output:% %Global Variables:% pipeVar1, pipeVar2, pipeVar3 etc. (Arbitrary data type): Pipe variables% for using DBTLINK% %--------%Notations:% Data type names are shown in parentheses and they start with a capital% letter and end with a capital T. Data type definitions can be found in [1]% or by "help dbtdata".% [D] = This parameter can be omitted and then a default value is used.% When the [D]-input parameter is not the last used in the call, it must be% given the value [], i.e. an empty matrix.% ... = There can be more parameters. They are explained under respective% metod or choice.%%Examples:%%Software Quality:% (About what is done to ascertain software quality. What tests are done.)%%Known Bugs:%%References:% [1]: Bj鰎klund S.: "DBT, A MATLAB Toolbox for Radar Signal Processing.% Reference Guide", FOA-D--9x-00xxx-408--SE, To be published.%%See Also:% * DBT, A Matlab Toolbox for Radar Signal Processing *% (c) FOA 1994-99. See the file dbtright.m for copyright notice.%% Start : 000914 Svante Bj鰎klund (svabj).% Latest change: $Date: 2000/09/16 09:35:14 $ $Author: svabj $.% $Revision: 1.1 $% ***************************************************************************** S = who('global','pipeVar*') noPipeVars = length(S); for i=1:noPipeVars clear('global',S{i}) end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?