public

共 254 篇文章
public 相关的电子技术资料,包括技术文档、应用笔记、电路设计、代码示例等,共 254 篇文章,持续更新中。

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

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

AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetPropert

AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static)

随机元胞自动机的分形画法的实现

随机元胞自动机的分形画法的实现,public class Lift extends Applet implements ActionListener

yaffs文件系统源码

yaffs文件系统源码,YAFFS是第一个专门为NAND Flash存储器设计的嵌入式文件系统,适用于大容量的存储设备;并且是在GPL(General Public License)协议下发布的

* This file is part of DigitalWatch, a free DTV watching and recording * program for the VisionPlu

* This file is part of DigitalWatch, a free DTV watching and recording * program for the VisionPlus DVB-T. * * DigitalWatch is free software you can redistribute it and/or modify * it under th

public class month1{ public static void main(String [] args){ int month = 10 int days = 0 s

public class month1{ public static void main(String [] args){ int month = 10 int days = 0 switch(month){ case 1: days = 31 case 2: days = 28 case 3: days = 31

支撑矢量机 class CvSVM : public CvStatModel //继承自基类CvStatModel { public: // SVM type enum { C_SVC

支撑矢量机 class CvSVM : public CvStatModel //继承自基类CvStatModel { public: // SVM type enum { C_SVC=100, NU_SVC=101, ONE_CLASS=102, EPS_SVR=103, NU_SVR=104 } //SVC是SVM分类器,SVR是SVM回归 // SVM kernel

javaScript调用applet

javaScript调用applet,必须用name指定applet的名字,然后document.name.method(param)就可以调用applet方法,方法必须是public

对应於codeworker的说明文档;CodeWorker is a versatile Open Source (GNU Lesser General Public License) parsing

对应於codeworker的说明文档;CodeWorker is a versatile Open Source (GNU Lesser General Public License) parsing tool and a source code generator devoted to generative programming.

public class phpmailer phpmailer - PHP email transport cla

public class phpmailer phpmailer - PHP email transport cla

值转人民币大写C++源代码

值转人民币大写C++源代码,public domain免费软件,和一般的转换程序比已充分考虑到各种情况和习惯读法。此代码针对C++ Builder平台编写并调试通过,但已仔细设计以便于需要时移植到其它平台。

This file may be distributed and/or modified under the terms of the ** GNU General Public License v

This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL incl

This program is free software you can redistribute it and/or modify it under the terms of the GNU G

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,

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

ALICE 利用AIML (Artificial Intelligence Markup Language)来形成对你的查询和输入的响应。不像其它花费数千美元的商业聊天机器人软件,ALICE可以按照 GNU Public License免费使用。

The public key infrastructure (PKI) is the foundation and center of network security architecture no

The public key infrastructure (PKI) is the foundation and center of network security architecture now, can provide security services including confidentiality, authentication, dig2ital signatures and

对数回归方程 LogarithmRegress.cs 方程模型为 Y=a*LnX+b public override double[] buildFormula() 得到系数数组

对数回归方程 LogarithmRegress.cs 方程模型为 Y=a*LnX+b public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。 public override double forecast(double x) 预测函数,根据模型得到预测结果。 public override

The OReilly Struts book (title not set yet) will be available sometime in the 3rd quarter of 2002.

The OReilly Struts book (title not set yet) will be available sometime in the 3rd quarter of 2002. Published by OReilly, this book covers both Struts 1.0 and 1.1. The beta or draft chapters are bein

ELinks is an advanced and well-established feature-rich text mode web (HTTP/FTP/..) browser. ELinks

ELinks is an advanced and well-established feature-rich text mode web (HTTP/FTP/..) browser. ELinks can render both frames and tables, is highly customizable and can be extended via Lua or Guile scrip

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

本程序是用JNI技术实现的读取硬盘序列号 将ChenminDiskIDJoc.jar 加入环境变量 这两个文件放入window 文件夹 或者JDK的bin文件夹 或者你的应用文件夹 DiskID32.dll DiskID.dll public static String chenmin.io.DiskID.Factory() 返回硬盘厂家 public static Str

元胞自动机生成的Sierpinski三角形

元胞自动机生成的Sierpinski三角形,public class sierpinski2 extends JApplet implements ActionListener