中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助

KmlIssCgInit?I

初始化数据结构,并将用户提供的系数矩阵关联到求解系统中。

接口定义

C Interface:

int KmlIssCgInitSI(KmlSolverTask **handle, int n, const float *a, const int *ja, const int *ia);

int KmlIssCgInitDI(KmlSolverTask **handle, int n, const double *a, const int *ja, const int *ia);

参数

参数名

类型

描述

输入/输出

handle

KmlSolverTask **

求解器句柄,handle不可为空指针。

输入/输出

n

int

n为矩阵A的维度。

输入

a

  • 在KmlIssCgInitSI中为float *。
  • 在KmlIssCgInitDI中为double *。

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"

示例

C Interface:
    KmlSolverTask *handle
    int n = 8;   
    double a[17] = { 1.0,1.0,2.0,9.0,2.0,1.0,-3.0,3.0,2.0,9.0,-5.0,6.0,1.0,4.0,1.0,7.0,2.0 };
    int ja[17] = { 0,3,4,1,2,3,5,2,7,3,6,4,5,5,7,6,7 };
    int ia[9] = {0, 3, 7, 9, 11, 13, 15, 16, 17};
    int ierr;
    ierr = KmlIssCgInitDI(&handle, n, a, ja, ia);