搜索资源列表
PROGRAMSEIDEL
- 一、 Seidel迭代法 算法8.2: 1. 输入矩阵A,右端项b ,初始迭代向量 X(0) ,维数n,容许误差ε ,最大容许迭代次数 N。 2. 置k=1. 3. 计算 X1=(b1-Σa1jxj(0))/a11 j=2,3,…….,n Xi=(bi-Σaijxj-Σaijxj(0))/aii, i=2,3,……,n-1 Xn=(bn-Σanjxj)/ann j=1,2,…….,n-1 4.若||X-X(0)|| <ε,输出X , 停机;否则,转步骤5。
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;否则,输出错误信息,停机
changelist
- 一个矩阵转置的练手程序,适合做大量运算中应用,可以作为一个学习参考
Matrix
- 实现稀疏矩阵的各种运算操作,包括加法,减法,乘法,转置,求逆矩阵-Sparse matrix operations to achieve a variety of operations including addition, subtraction, multiplication, transpose, inverse matrix
matix
- VC++中使用的矩阵类模板,实现矩阵存储,转置等问题。-VC++ matrix class template used to achieve matrix storage, transpose and other issues.
jiaohuan
- 实现了数组最大数所在列与首列进行交换,同时包含了矩阵的行列转置-To achieve the maximum number of the array where the first column out and exchange, also includes the ranks of the matrix transpose
asdf
- 矩阵的转置,对输入的矩阵进行转置并输出。-A matrix of the input and output matrix transpose.
juzhen
- 改程序提示用户输入数和数的坐标,完成矩阵的加减或者转置功能-Change the program prompts the user to enter the number of several coordinates to complete the addition and subtraction of the matrix transpose function
Matrix
- 要求创建一个稀疏矩阵,对此矩阵进行压缩存储,然后实现快速转置、求和、求积。-Creating a matrix,than compress,transposition, summation and quadrature.
Matrix-VCPP6.0
- 实现基本矩阵运算,实现加,减,乘,求逆,求转置,文件保存等功能-Matrix calculate
py3
- 一个简单的C语言控制台程序,通过二维数组的使用实现了对矩阵的转置运算。-A simple C language console application, by using a two-dimensional array of realization of the matrix transpose operation.
Matrix
- C++实现的矩阵操作,包括计算行列式、求最大最小值及其下标、矩阵求逆、转置等功能-Matrix operations C++ implementation, including the calculation of the determinant, find the minimum and maximum values and subscr ipt, matrix inversion, transpose function