代码搜索:Logistic

找到约 1,002 项符合「Logistic」的源代码

代码结果 1,002
www.eeworm.com/read/179705/9343225

c logistic.c

/* cdf/logistic.c * * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published
www.eeworm.com/read/179320/9361061

asv logistic.asv

x=0.4;%x=2/3 len=length(3.4:0.01:4); disp(len); q=zeros(1,len); for i=1:61 z1=u*x*(1-x); x=z1; q=z1; end u=3.4:0.01:4; plot(u,q); axis([3.4 4 -10 10]);
www.eeworm.com/read/179320/9361065

m logistic.m

www.eeworm.com/read/177620/9443905

rar logistic.rar

www.eeworm.com/read/167879/9948730

m logistic.m

function x=logistic(n,level,a,x0) %Syntax: x=logistic(n,level,a,x0) %________________________________ % % Simulation of the Quadratic map. % x'=ax(1-x) % % x is the simulated time series. %
www.eeworm.com/read/280981/10274846

m logistic.m

% 产生 Logistic 序列  % 公式模型 x(n+1) = lambda * x(n) * (1 - x(n)) clc clear close all lambda = 3:5e-4:4; x = 0.4*ones(1,length(lambda)); N1 = 400; % 前面的迭代点数 N2 = 100;
www.eeworm.com/read/161374/10420296

html logistic.html

www.eeworm.com/read/424281/10467592

c logistic.c

/* randist/logistic.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the ter
www.eeworm.com/read/424281/10471296

c logistic.c

/* cdf/logistic.c * * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as pub
www.eeworm.com/read/417673/10981081

m logistic.m

function out = logistic(x) out = 1./(1+exp(-x));