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