资源列表
[数学计算/工程计算] interpolating
说明:对于切比雪夫点 利用 Matlab 进行lagrange插值-Chebyshev points for the use of Matlab for lagrange interpolation<zzxch> 在 2025-06-29 上传 | 大小:1kb | 下载:0
[人工智能/神经网络/遗传算法] svmfenlei
说明:关于svm的分类问题,比如:给一组数据,把这些数据分成两类,我的做法不算很好,成功率才是87%-On the SVM classification problems, such as: a set of data to these data into two categories, my approach is not very good, and the success rate is 87<tom> 在 2025-06-29 上传 | 大小:1kb | 下载:0
[matlab例程] GMM
说明:Generalized Method of Moments(GMM) 广义矩方法,是用来估计模型参数的计量经济学过程。具体说明见其中的gmmdoc.pdf。-Generalized Method of Moments (GMM) GMM method is used to estimate model parameters Econometrics process. See which specify gmmdoc.pdf.<yangchengbo> 在 2025-06-29 上传 | 大小:541kb | 下载:1
[matlab例程] Matlabcodes
说明:很全的matlab 命令集,很不错,共享下。-Very wide of the matlab command set, it is good to share.<zhou> 在 2025-06-29 上传 | 大小:10kb | 下载:0
[数据结构常用算法] lianbiaopaixu
说明:2008软件公司笔试题:两个链表插入排序,VC编写-2008 software company T questions: Two linked list insertion sort, VC preparation<chen> 在 2025-06-29 上传 | 大小:877kb | 下载:0
[人工智能/神经网络/遗传算法] GaTest
说明:这是一个非常简单的遗传算法测试源代码,用户只需改变常数的定义并且定义“评价函数”即可。 要求输入的文件应该命名为‘gadata.txt’;系统产生的输出文件为‘galog.txt’。 输入的文件由几行组成:数目对应于变量数。且每一行提供次序——对应于变量的上下界。 如第一行为第一个变量提供上下界,第二行为第二个变量提供上下界,等等。-This is a very simple genetic algorithm to test the source code, users only<huanxong> 在 2025-06-29 上传 | 大小:402kb | 下载:0
[数据结构常用算法] paixu
说明:2008软件公司面试题:排序大全:简单选择排序、冒泡排序、选择排序、shell排序、快速排序、插入排序、堆排序(从小到大)、归并排序(利用递归)-2008 software companies face questions: Sort Guinness: simple choice to sort, bubble sort, select sort, shell sort, quick sort, insert sort HEAPSORT (from small to large), Mergi<chen> 在 2025-06-29 上传 | 大小:221kb | 下载:0
[数据结构常用算法] Insert_sort
说明:void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(int i=n-2 i>=0 i--) { if(temp<a[i]) a[i+1]=a[i] else break } a[i+1]=temp }-void insert_sort (int* a, int n) (if<Katherine> 在 2025-06-29 上传 | 大小:218kb | 下载:0