ui_del_hist.m
来自「有关信道估计和信道均衡的仿真程序」· M 代码 · 共 22 行
M
22 行
% this handles the deletion of the history figure for the BERGulator% Copyright 1997-1998 Phil Schniter % keep all variables local in scope function [] = ui_del_hist(); % declare global variables berg_global; ui_private_global; % delete all history traces for i=1:length(h_trace_h), if ishandle(h_trace_h(i)), delete(h_trace_h(i)); end; end; h_trace_h = []; % delete all mse-related handles for i=1:length(h_trace_mse), if ishandle(h_trace_mse(i)), delete(h_trace_mse(i)); end; end; h_trace_mse = [];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?