/*目的:使一個複數可顯數出來
/*目的:使一個複數可顯數出來,可做+-/*,還要可以做>>跟<<的功能 題目:定義一個複數的class叫Complex,a(實部)與b(虛部)為double的型態,i表示根...
/*目的:使一個複數可顯數出來,可做+-/*,還要可以做>>跟<<的功能 題目:定義一個複數的class叫Complex,a(實部)與b(虛部)為double的型態,i表示根...
要求:编写一个应用程序,对程序中给定的四个double型数据求其最大值和最小值。 文档包括了实验要求和详细的源代码....
多项式曲线拟合 任意介数 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as...
kmeans算法实现 a simple k-means clustering routine. returns the cluster labels of the data points in a...
I made a lot of changed on this object,such as * // 1.Encapsulates all code in one userobjet,s...
C/C++ implementation of the Levenberg-Marquardt non-linear least squares algorithm. levmar includes...
linux下用C语言写的聊天程序!/*BUG and NOTE: Not join protect to Shared Memory Segments,example Semaphore Array...
AS2Debug是为了弥补flash自带的trace的不足而制作的,增加了一下几个主要功能 1.对object和Array做了解析,能输出包含的具体数据和类型 2.对movieclip做了处理,使...
动态规划的方程大家都知道,就是 f[i,j]=min{f[i-1,j-1],f[i-1,j],f[i,j-1],f[i,j+1]}+a[i,j] 但是很多人会怀疑这道题的后效性而放弃动规做法。 ...
This programme is to control DC motor in a certain speed using PWM. The target speed is "r", it is ...