?? 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 + -