-
K-MEANS
Implementation of K-MEANS classification of 2D data of this code, the high speed
- 2015-01-18 10:23:00下载
- 积分:1
-
This is a written in c#, housing rental building management system management sy...
这是一个用C#编写的出租房屋管理系统,房屋管理系统是一种新开发的系统,很实用。-This is a written in c#, housing rental building management system management system is a new development system, very practical.
- 2022-06-11 20:02:42下载
- 积分:1
-
Hilbert
在VC平台上面实现Hilbert变换,已通过测试(The VC platform Hilbert transformation above realize,Already through the test)
- 2021-02-02 11:19:59下载
- 积分:1
-
BBEZZIER_SURRe
贝塞尔曲面显示出来程序源码,里面包含非常常多子程序源码,希望对您有用 可直接使用。
(Bezier surface display program source code, which contains very often subroutine source code, I hope you can be used directly.)
- 2012-07-10 17:10:25下载
- 积分:1
-
C-Matlab-combine-book
这本书适用于对于C++和Matlab均有一定了解的基础上进行阅读。很好的将两种语言联系在了一起。(This book is applicable to the C++ and Matlab have a certain understanding on the basis of reading. Very good in both languages will be linked together.)
- 2009-02-28 18:33:22下载
- 积分:1
-
Matlab_BP
基于MATLAB神经网络工具箱的BP网络实现,该本书对初学神经网络的读者应该比较有用。(Based on the MATLAB neural network toolbox of the BP network, the book for beginner readers neural network should be more useful.)
- 2007-09-29 00:40:37下载
- 积分:1
-
JT-808.pdf
车载GPS国家标准,JT-808协议规定了车载设备必须上传的相关定位数据(national stand for car)
- 2015-11-09 14:51:23下载
- 积分:1
-
MFCLibrary1
msgina代码修改此代码生成dll替换winxp中的msgina.dll可以设置xp登录方式(Msgina code to modify this code to generate DLL to replace msgina. DLL in WinXP can set the way of XP login)
- 2019-03-28 14:01:40下载
- 积分:1
-
CLI_1
cli basic the function for all the switch and routers
- 2014-12-02 23:26:40下载
- 积分:1
-
设计模式
资源描述
设计模式中部分设计模式源码整理
例如单例模式
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace Com.SingletonPattern
{
///
/// 功能:延迟加载单例模式 利用DotNet的特性
/// 编写:willieni
/// 日期:2015年07月10日
/// 备注:延迟加载
///
public class DelaySingleton : ISingleton
{
private DelaySingleton()
{
}
public static DelaySingleton Instance
{
get
{
- 2022-01-25 21:22:56下载
- 积分:1