搜索资源列表
PROGRAMMIFA
- 幂法求矩阵的特征值和特征向量 算法9.1 1. 输入矩阵A,初始向量X,误差限ε最大迭代次数N。 2. 置k=1,u=0。 3. 求xr=>λ,|xr|=max|xr|,i=1,….,n。 4. 计算 Y=X/λ,X=AY 5. 若|λ-u|〈ε,输出λ,X,停机;否则,转步骤6。 6. 若k<N,k+1=>k,λ=>u,转步骤3;否则,输出错误信息,停机
BP_abs(sinX)
- BP算法拟合y=abs(sin(x))函数,样本数9对,目标值0.001-BP algorithm fitting y = abs (sin (x)) function, for nine samples right, the target value 0.001
miti
- S先生与P先生谜题 设有两个自然数X、Y,2<=X<=Y<=99,S先生知道这两个数的和S,P先生知道这两个数的积P, 他们二人进行了如下对话: * S: 我确信你不知道这两个数是什么,但我也不知道。 * P: 一听你说这句话,我就知道这两个数是什么了。 * S: 我也是,现在我也知道了。
NumericalSummation
- Produce a table of the values of the series (1) for the 3001 values of x, x = 0.0, 0.1, 0.2, …, 300.00. All entries of the table must have an absolute error less than 10-10. This problem is based on a problem from Hamming (1962), when main
vbcontrol
- 通过编写VB控制界面实现在rs232下对三菱plc通讯,可以读写(x,y,m等)强制y关或开-In rs232 communication Mitsubishi plc can read and write (x, y, m) forces y off or open by writing VB control interface to achieve
SimulateKeyboardHit
- This code shows an easy way to simulate keyboard press and release keys to another application. It uses the SendInput API for simulating keyboard press and release keys. To illustrate this technique we will show how to automatically run calc.exe
medi
- 设X[0:n-1]和Y[0:n-1]为2 个数组,每个数组中含有n 个已排好序的数。试设计一个 O(log n)时间的算法,找出X 和Y 的2n 个数的中位数。-Let X [0: n-1] and Y [0: n-1] for the two arrays, each array containing the n number has been sorted. Try to design an O (log n) time algorithm to find the X and Y 2n
medo
- 设X[ 0 : n - 1]和Y[ 0 : n – 1 ]为两个数组,每个数组中含有n个已排好序的数。找出X和Y的2n个数的中位数。 编程任务 利用分治策略试设计一个O (log n)时间的算法求出这2n个数的中位数。 数据输入 由文件input.txt提供输入数据。文件的第1行中有1个正整数n(n<=200),表示每个数组有n个数。接下来的两行分别是X,Y数组的元素。结果输出 程序运行结束时,将计算出的中位数输出到文件output.txt中-Let X [0: n- 1
bestfitted-line
- 根据所给的点的坐标算出最拟合曲线的公式,并根据原来的x值算出新的y值。并将数据储存到一个data文件-A C++ programme finds the best-fitted straight line to the x and y values, and then writes the original x, y values and the new y values on the line (for each x) to a data file. X: 1.0000 2.0000
mhc05
- 读取平面点坐标及点号,按X、Y轴坐标大小将平面点点号以二维5*5矩阵整齐输出!-Read the plane point coordinates and the dot, according to the X and Y coordinates, size and number on the plane with two-dimensional 5* 5 output matrix and tidy!
Geomag
- 利用12阶12次勒让德球谐函数准确计算地球表面及近地空间的地磁场信息,输入参数:三维地理位置(纬度、经度、海拔高度(以千米为单位))和时间(小数年),输出:地磁场的7个量,包括:地磁场总强度F、地磁场水平分量H、北向分量X、东向分量Y、垂直分量Z以及地磁偏角D和磁倾角I。-The use of the order of 12 12 Legendre spherical harmonics geomagnetic information to accurately calculate the Ea
zhongweishu
- i.中位数问题 问题描述 设X[ 0 : n - 1]和Y[ 0 : n – 1 ]为两个数组,每个数组中含有n个已排好序的数。找出X和Y的2n个数的中位数。 编程任务 利用分治策略试设计一个O (log n)时间的算法求出这2n个数的中位数。 数据输入 由文件input.txt提供输入数据。文件的第1行中有1个正整数n(n< 200),表示每个数组有n个数。接下来的两行分别是X,Y数组的元素。 结果输出 程序运行结束时,将计算出的中位数输出到