📄 clean.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -