搜索结果

找到约 228 项符合 Public 的查询结果

数学计算 双曲线回归方程 HyperbolaRegress.cs 注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。 方程模型为

双曲线回归方程 HyperbolaRegress.cs 注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。 方程模型为 public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。 public override double for ...
https://www.eeworm.com/dl/641/226292.html
下载: 81
查看: 1043

数学计算 移动平均预测 ModifyShiftAverageRegress.cs 移动平均也可画趋势图

移动平均预测 ModifyShiftAverageRegress.cs 移动平均也可画趋势图,如下: public double forecast(int interval) 移动平均认为数据是时间序列数据,该方法预测interval个时间间隔后的值 public override double[] getTrendArray() 得到趋势数组,该数组的数据直接在图形中展示出来就可以产生趋势线。 ...
https://www.eeworm.com/dl/641/226295.html
下载: 108
查看: 1052

Linux/Unix编程 This program is free software you can redistribute it and/or modify it under the terms of the GNU

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 version 2 of the License, or (at your option) any later version.
https://www.eeworm.com/dl/619/232043.html
下载: 190
查看: 1058

数据结构 #if !defined(AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_) #define AFX_GAQUEEN_H_

#if !defined(AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_) #define AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CGAQueen { public: CGAQueen(int nPopulation,int nIteration,float Mutation,int mChB ...
https://www.eeworm.com/dl/654/239054.html
下载: 198
查看: 1166

软件设计/软件工程 Dijkstra算法求最短路径(C#版) using System using System.Collections using System.Text namespace Greedy

Dijkstra算法求最短路径(C#版) using System using System.Collections using System.Text namespace Greedy { class Marx { private int[] distance private int row private ArrayList ways = new ArrayList() public Marx(int n,params int[] d) { this.row = n distance = new int[row * row] for ( ...
https://www.eeworm.com/dl/684/239495.html
下载: 117
查看: 1112

嵌入式Linux This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY without

This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details.
https://www.eeworm.com/dl/653/245310.html
下载: 69
查看: 1168

Applet baidu 本程序是用JNI技术实现的读取硬盘序列号 将ChenminDiskIDJoc.jar 加入环境变量 这两个文件放入window 文件夹 或者JDK的bin文件夹 或者你的应用文件

baidu 本程序是用JNI技术实现的读取硬盘序列号 将ChenminDiskIDJoc.jar 加入环境变量 这两个文件放入window 文件夹 或者JDK的bin文件夹 或者你的应用文件夹 DiskID32.dll DiskID.dll public static String chenmin.io.DiskID.Factory() 返回硬盘厂家 public static String chenmin.io.DiskID.DiskID() 返回硬盘序列号 Chen ...
https://www.eeworm.com/dl/634/249587.html
下载: 91
查看: 1078

人工智能/神经网络 ALICE 利用AIML (Artificial Intelligence Markup Language)来形成对你的查询和输入的响应。不像其它花费数千美元的商业聊天机器人软件

ALICE 利用AIML (Artificial Intelligence Markup Language)来形成对你的查询和输入的响应。不像其它花费数千美元的商业聊天机器人软件,ALICE可以按照 GNU Public License免费使用。
https://www.eeworm.com/dl/650/262894.html
下载: 158
查看: 1155

Java编程 if(e.getActionCommand()=="参数法画圆"){ p=11 } } //actionPerformed //实现接口Window

if(e.getActionCommand()=="参数法画圆"){ p=11 } } //actionPerformed //实现接口WindowListener的所有方法,用于处理发生在窗口上的事件 public void windowClosing(WindowEvent e)
https://www.eeworm.com/dl/633/264434.html
下载: 48
查看: 1042

书籍源码 26.编写一个具有如下样式的类模板tmplt

26.编写一个具有如下样式的类模板tmplt,用于实现所谓的反序输出问题,其中使用了类型参数T(使所处理的元素类型可变化)以及普通参数n(元素个数也可变化): template <class T, int n> class tmplt { T arr[n] // n个T类型的数据存放于数组arr之中 public: void dataIn() //从键盘输入n个T类型数据放入arr数组中 ...
https://www.eeworm.com/dl/532/268010.html
下载: 24
查看: 1030