clean.m
来自「基于OFDM的无线宽带系统仿真It contains mainly two pa」· M 代码 · 共 16 行
M
16 行
function res = clean(a)% DESCRIPTION res = clean(a)% Keeps only finite values of vector a.% INPUT% a -- any vector% OUTPUT% res -- A vector spanning the same dimension as the input,% but with all non finite elements removed.% TRY% clean([nan 3 nan 2 inf])% by Magnus Almgren 951104res = a(finite(a));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?