thresh.m

来自「Simon Haykin的 《Neural NetWorks》例子原码」· M 代码 · 共 13 行

M
13
字号
function M=thresh(A,ll,ul)% M=thresh(A,ll,ul)%%  a little routine that thresholds a matrix or vector with %  a lower limit (ll) and an upper limit (ul)%%  Hugh Pasika 1996M = (A<ll)*ll + (A>ul)*ul + (A>=ll & A<=ul).*A;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?