-
binary numbers
- 2023-04-03 15:30:05下载
- 积分:1
-
计算地球或椭圆体中两点距离的程序
计算地球或椭圆体中两点距离的程序-A program which can calculate the instance of two points in the earth or the elipse
- 2022-05-19 14:58:07下载
- 积分:1
-
加减乘除练习用的程序,它可以让学生练习加减乘除等数学运算。...
加减乘除练习用的程序,它可以让学生练习加减乘除等数学运算。-arithmetic practice with the procedure, it can allow students to practice arithmetic and other mathematical calculations.
- 2022-03-01 11:24:47下载
- 积分:1
-
雅可比迭代法解方程
本程序是用Jacobi迭代法解方程组 ,原方程 AX=b 迭代方程 X(k+1)=BoX(k)+f , Bo=I-(D-1)A ;f=(D-1)b. (其中(D-1)表示D的逆)
- 2022-03-13 10:28:03下载
- 积分:1
-
矩阵运算
// 矩阵乘法: C=AB, A[m×v], B[v×n], C[m×n] ... for row-major matrices
// 允许A,B,C 带入相同参数.
double* matr_x(double*C, const double*Ao, const double*Bo, const int m,const int v, const int n){
if(!Ao || !Bo) return 0; if(!C) C=new double[m*n];
double* A=new double[m*v], * B=new double[v*n];
memcpy(A,Ao,m*v*sizeof(double)); memcpy(B,Bo,v*n*sizeof(double));
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-07 01:39:24下载
- 积分:1
-
这个是SIMPSON求基公式的运用,求解任意一个函数在某个积分区间的结果。...
这个是SIMPSON求基公式的运用,求解任意一个函数在某个积分区间的结果。-SIMPSON this is the base formula for the use of a function to solve arbitrary points in a range of results.
- 2022-02-05 22:03:14下载
- 积分:1
-
This is a question of the Queen's eight procedures
这是一个八皇后问题的程序-This is a question of the Queen"s eight procedures
- 2022-06-19 09:00:45下载
- 积分:1
-
vc++工程,计算快速傅立叶变换的源程序。
vc++工程,计算快速傅立叶变换的源程序。-vc++ engineering, computing Fast Fourier Transform of the source.
- 2022-11-22 00:05:03下载
- 积分:1
-
波音747飞机运动空间六自由度仿真模型-Simulink程序.rar
波音747飞机运动空间六自由度仿真模型-Simulink程序.rar波音747飞机运动空间六自由度仿真模型-Simulink程序.rar波音747飞机运动空间六自由度仿真模型-Simulink程序.rar
- 2022-03-03 22:53:52下载
- 积分:1
-
两个有序数序列中找第k小
资源描述已知两个已经排好序(非减序)的序列X和Y,其中X的长度为m,Y长度为n,
现在请你用分治算法,找出X和Y的第k小的数,算法时间复杂度为O(max{logm, logn})。
此题请勿采用将序列X和Y合并找第k小的O(m+n)的一般方法,要充分利用X和Y已经排好序的这一特性。
输入格式
第一行有三个数,分别是长度m、长度n和k,中间空格相连(1
- 2023-05-28 16:30:03下载
- 积分:1