所以,伙计们,我正在开发一个结构分析程序,我遇到了一个问题,我有一些问题需要解决。基本上,我有一个方程组,我只需要解决其中的一些方程。 我需要解决的问题取决于布尔数组,如果我这样做,则为true,如果不是,则为false。这样,在数组的第n个元素中具有真值意味着我必须求解第n个方程,因此意味着我必须得到方程组的矩阵的nxn元素。 你们有什么见解吗?
答案 0 :(得分:0)
所以,这就是我提出的:
//Firstly, define the size of the subsystem:
int size = 0;
for(int i = 0; i < TrueorFalseMatrix.m; i++) {
if(TrueorFalseMatrix.data[i][0] != 0)
size+= 1;
}
//Then we can assign the size values to the Matrix of the subsystem
System_A = Matrix.matrizEmpty(size,size);
System_B = Matriz.matrizEmpty(size, 1);
//This array will store the coordinates of the coefficients that
//will be used
int[] Coordinates = new int[size];
//We store these coordinates in the array
int count = 0;
for(int i = 0; i < TrueorFalseMatrix.m; i++) {
if(TrueorFalseMatrix.data[i][0] != 0) {
Dtrue[count] = i;
count++;
}
}
//We can now assign values to our system Matrix
for(int i = 0; i < size; i++) {
for(int j = 0; j < size; j++) {
System_A.data[i][j] = SourceMatrix.data[Dtrue[i]][Dtrue[j]];
}
System_B.data[i][0] = SourceResultVector.data[Dtrue[i]][0]
}
//Results
double[] Results = System.solve(System_A,System_B);