代码搜索:sparse
找到约 3,324 项符合「sparse」的源代码
代码结果 3,324
www.eeworm.com/read/162188/10328025
ext sparse.ext
/*
** sparse.ext - global definitions for sparse.src
**
** (C) Copyright 1996 by Aptech Systems, Inc.
** All Rights Reserved.
**
** This Software Product is PROPRIETARY SOURCE CODE OF APTECH
*
www.eeworm.com/read/162188/10328392
src sparse.src
#ifDLLCALL
/*
** sparse.src - library for sparse operations
**
** (C) Copyright 1996 by Aptech Systems, Inc.
** All Rights Reserved.
**
** This Software Product is PROPRIETARY SOURCE CODE OF
www.eeworm.com/read/467560/7005465
cpp sparse.cpp
#include
#include
#include
#define SIZE 20
typedef struct sparse
{
int row,col,val;
}SPR;
//--------------------------------------------------
www.eeworm.com/read/451644/7459694
txt sparse.txt
procedure SPARSE(B:array of real; N:integer;var X:array of real; RSQ:real);
label 1;
const
NMAX = 500; EPS = 0.000001;
var
G,H,XI,XJ:array[0..500] of real;
J,ITER,IRST:integer;
www.eeworm.com/read/446759/7565531
h sparse.h
/**************************************************************************
**
** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
**
** Meschach Library
**
**
www.eeworm.com/read/446759/7565546
c sparse.c
/**************************************************************************
**
** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
**
** Meschach Library
**
**
www.eeworm.com/read/438346/7732583
c sparse.c
/*
* sparse memory mappings.
*/
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/199432/7857104
txt sparse.txt
procedure SPARSE(B:array of real; N:integer;var X:array of real; RSQ:real);
label 1;
const
NMAX = 500; EPS = 0.000001;
var
G,H,XI,XJ:array[0..500] of real;
J,ITER,IRST:integer;
www.eeworm.com/read/141401/13012143
txt sparse.txt
Sub SPARSE(B(), N, X(), RSQ)
NMAX = 500
EPS = 0.000001
Dim G(500), H(500), XI(500), XJ(500)
EPS2 = N * EPS ^ 2
IRST = 0
1 IRST = IRST + 1
Call ASUB(X(), XI())
RP
www.eeworm.com/read/242178/13090154
txt sparse.txt
procedure SPARSE(B:array of real; N:integer;var X:array of real; RSQ:real);
label 1;
const
NMAX = 500; EPS = 0.000001;
var
G,H,XI,XJ:array[0..500] of real;
J,ITER,IRST:integer;