logsigfx.m
来自「用人工神经网络进行人脸识别」· M 代码 · 共 14 行
M
14 行
function [w] = logsigfx(t);% USAGE: y = logsigfx(x)% logsigfx returns the Boltzmann/logistic/Fermi function:% y = 1 / ( 1 + exp(-x) )% t is the face matrix of the system% t can be a scalar or a matrix with% the same dimension as x [ni,nj] = size(t);un = ones(ni,nj);w = un./(un+exp(-t));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?