代码搜索:LOGISTIC

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

代码结果 1,002
www.eeworm.com/read/215012/15077870

m logistic.m

% 产生 Logistic 序列  % 使用平台 - Matlab6.5 % 作者:陆振波,海军工程大学 % 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页 % 电子邮件:luzhenbo@sina.com % 个人主页:luzhenbo.88uu.com.cn % 虫口模型 x(n+1) = lambda * x(n) * (1 - x(n)) % 当 lamb
www.eeworm.com/read/212806/15148924

m logistic.m

function Logistic % Logistic映射程序 n=40; u=4; X(1)=0.2; % X取值范围是[0,1] for i=1:n-1 X(i+1)=u*X(i)*(1-X(i)); % Logistic映射程序公式 end; x=mean(X) % x为数组的平均值 for i=1:n
www.eeworm.com/read/212047/15166661

c logistic.c

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

m logistic.m

clear all y=[3.9 5.3 7.2 9.6 12.9 17.1 23.2 31.4 38.6 50.2 62.9... 76.0 92.0 106.5 123.2 131.7 150.7 179.3 204.0 226.5 251.4 281.4]'; x=(1:22)'; beta0=[400,3.0,0.20]'; %非线性回归 'Logisfun'为回归模
www.eeworm.com/read/250585/4428508

java logistic.java

/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either v
www.eeworm.com/read/202075/5054703

java logistic.java

/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either v
www.eeworm.com/read/202075/5055503

java logistic.java

/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either v
www.eeworm.com/read/167728/5452825

c logistic.c

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

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/292422/3953377

java logistic.java

/* * $RCSfile: Logistic.java,v $ * $Revision: 1.1 $ * $Date: 2004/10/17 01:35:30 $ * * NeuralNetworkToolkit * Copyright (C) 2004 Universidade de Brasília * * This file is part of NeuralNetwork