含蓄小猫咪

文章
3
资源
0
加入时间
3年0月8天

c语言计算矩阵特征值和特征向量-1(幂法)

1 #include <stdio.h> 2 #include <math.h> 3 #include <stdlib.h> 4 #define M 3 //方阵的行数 列数 5 #define ε0 0.00000001//ε0为要求的精度 6 #define N 100000//最大迭代次数 7 8 ...