• 大小: 360B
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-28
  • 语言: Matlab
  • 标签: 未分类  

资源简介

matlab开发-sigmoid。使用参数创建sigmoid函数

资源截图

代码片段和文件信息

function v = sigmoid(paramsrange)

% Sigmoid creates a Sigmoid function using parameters in PARAMS and the 
% variable range.

% V = SIGMOID(PARAMSRANGE)
%
% PARAMS: a 3-vector the entries of which are (in this order):
% amplitude value 

% phase
% slope

amplitude = params(1);
Phase=params(2);
Slope=params(3);
%a=params(4);



v=1./(1+Phase*exp(-Slope*(range)));

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         373  2018-07-11 20:22  sigmoid.m

评论

共有 条评论