初始化数据结构,并将用户提供的系数矩阵关联到求解系统中。
C Interface:
int KmlIssGcrInitSI(KmlSolverTask **handle, int n, const float *a, const int *ja, const int *ia);
int KmlIssGcrInitDI(KmlSolverTask **handle, int n, const double *a, const int *ja, const int *ia);
参数名 |
类型 |
描述 |
输入/输出 |
---|---|---|---|
handle |
KmlSolverTask ** |
求解器句柄,handle不可为空指针。 |
输入/输出 |
n |
int |
n为矩阵A的维度。 |
输入 |
a |
|
a为维度为非零元素的个数的数组,a[i]为第i个非零元的值。该数组的生命周期与handle相同。 |
输入 |
ja |
int * |
ja为维度为非零元素的个数的数组,ja[i]为第i个非零元的列号。该数组的生命周期与handle相同。 |
输入 |
ia |
int * |
ia为n+1维数组,ia[i]为第i行第一个非零元在所有非零元中的索引。该数组的生命周期与handle相同。 |
输入 |
返回值 |
类型 |
描述 |
---|---|---|
NO_ERROR |
int |
正常执行。 |
KML_SOLVER_INVALID_ARGUMENT |
int |
无效的参数。 |
#include "kml_iss.h"
KmlSolverTask *handle int n = 8; double a[26] = {1.0, 1.0, 2.0, 9.0, 2.0, 1.0, -3.0, 2.0, 3.0, 2.0, 1.0, 1.0, 9.0, -5.0, 2.0, 6.0, 1.0, -3.0, 1.0, 4.0, 1.0, -5.0, 7.0, 2.0,\ 1.0, 2.0}; int ja[26] = {0, 3, 4, 1, 2, 3, 5, 1, 2, 7, 0, 1, 3, 6, 0, 4, 5, 1, 4, 5, 7, 3, 6, 2, 5, 7}; int ia[9] = {0, 3, 7, 10, 14, 17, 21, 23, 26}; int ierr; ierr = KmlIssGcrInitDI(&handle, n, a, ja, ia);