文件名称:fis
- 所属分类:
- 人工智能/神经网络/遗传算法
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2013-01-03
- 文件大小:
- 14kb
- 下载次数:
- 0次
- 提 供 者:
- 王**
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
/*
* 这是修改过后的fis.c模糊推理系统库函数,可以移植C/C++环境使用,在VS2010的MFC环境经过测试
* 1、将fis.c文件拷贝到项目中;
* 2、修改VS2010的配置属性,项目->属性->C/C++->预处理器->预处理器定义,添加
* _CRT_SECURE_NO_WARNINGS
* 3、在【解决方案资源管理器】中选中fis.c文件,单击右键的属性
* 【配置属性】->【常规】->【项类型】,配置为【C/C++ 标头】
* 4、如果是C语言文件(*.c)使用
* #include "fis.c"
* 包含接口库文件;
* 5、如果是C++文件,使用
* extern "C"{
* #include "fis.c"
* }
* 包含库文件。
* 祝你使用愉快!
* hemmingway <hemmingway@163.com> 2013/1/2
*/-/*
* This is a modified fis.c fuzzy inference system library function, you can transplant the C/C++ environment to use the MFC in VS2010 environment tested
* 1 the fis.c files are copied to the project
* 2 modify the VS2010 configuration properties, project-> Properties-> C/C++-> preprocessor-> preprocessor definitions add
* _CRT_SECURE_NO_WARNINGS
* 3】 【Solution Explorer selected fis.c file, click the right attributes
* [Configuration Properties]-> [conventional]-> [type of item], [C/C++ header]
* 4, if it is a C language file (*. C) the use of
*# Include "fis.c"
* Contains the interface library file
* 5, if it is a C++ files, use
* Extern "C" {
*# Include "fis.c"
*}
* Contains the library files.
* I wish you to pleasant!
* Hemmingway <hemmingway@163.com> 2013/1/2
* /
* 这是修改过后的fis.c模糊推理系统库函数,可以移植C/C++环境使用,在VS2010的MFC环境经过测试
* 1、将fis.c文件拷贝到项目中;
* 2、修改VS2010的配置属性,项目->属性->C/C++->预处理器->预处理器定义,添加
* _CRT_SECURE_NO_WARNINGS
* 3、在【解决方案资源管理器】中选中fis.c文件,单击右键的属性
* 【配置属性】->【常规】->【项类型】,配置为【C/C++ 标头】
* 4、如果是C语言文件(*.c)使用
* #include "fis.c"
* 包含接口库文件;
* 5、如果是C++文件,使用
* extern "C"{
* #include "fis.c"
* }
* 包含库文件。
* 祝你使用愉快!
* hemmingway <hemmingway@163.com> 2013/1/2
*/-/*
* This is a modified fis.c fuzzy inference system library function, you can transplant the C/C++ environment to use the MFC in VS2010 environment tested
* 1 the fis.c files are copied to the project
* 2 modify the VS2010 configuration properties, project-> Properties-> C/C++-> preprocessor-> preprocessor definitions add
* _CRT_SECURE_NO_WARNINGS
* 3】 【Solution Explorer selected fis.c file, click the right attributes
* [Configuration Properties]-> [conventional]-> [type of item], [C/C++ header]
* 4, if it is a C language file (*. C) the use of
*# Include "fis.c"
* Contains the interface library file
* 5, if it is a C++ files, use
* Extern "C" {
*# Include "fis.c"
*}
* Contains the library files.
* I wish you to pleasant!
* Hemmingway <hemmingway@163.com> 2013/1/2
* /
(系统自动生成,下载前可以参看下载内容)
下载文件列表
fis.c