代码搜索:sparse
找到约 3,324 项符合「sparse」的源代码
代码结果 3,324
www.eeworm.com/read/301170/13864912
m seldel.m
function s=seidel(A,b,x0)
n=10;
A1=sparse(1:n,1:n,-2,n,n);
A2=sparse(1:n-1,2:n,1,n,n);
A=A1+A2+A2';
B1=ones(1,8);
B2=-1.5*B1;
B3=[-0.5];
B4=cat(2,B3,B2,B3);
b=(B4)';
x0=[0 0 0 0 0 0 0 0 0 0]
www.eeworm.com/read/152629/5672925
java constantmatrix.java
/* Copyright (C) 2002 Univ. of Massachusetts Amherst, Computer Science Dept.
This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit).
http://www.cs.umass.edu/~mccallum/mallet
Th
www.eeworm.com/read/142536/5764924
h bjtdefs.h
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
#ifndef BJT
#define BJT
#include "cktdefs.h"
#include "ifsim.h"
#
www.eeworm.com/read/142536/5764949
h jfetdefs.h
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Sydney University mods Copyright(c) 1989 Anthony E. Parker, David J. Skellern
www.eeworm.com/read/142536/5765165
h mesdefs.h
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
#ifndef MES
#define MES
#include "ifsim.h"
#include "cktdefs.h"
#include "
www.eeworm.com/read/142536/5765489
bat msc51.bat
del ..\sparse.lib
cl /I..\..\include /c spalloc.c >> ..\..\msc.out
cl /I..\..\include /c spbuild.c >> ..\..\msc.out
cl /I..\..\include /c spfactor.c >> ..\..\msc.out
cl /I..\..\include /c spoutput.c >
www.eeworm.com/read/141300/5771447
h vbicdefs.h
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Model Author: 1995 Colin McAndrew Motorola
Spice3 Implementation: 2003 Dietmar
www.eeworm.com/read/141300/5771797
h jfetdefs.h
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Sydney University mods Copyright(c) 1989 Anthony E. Parker, David J. Skellern
www.eeworm.com/read/141300/5772272
h mesdefs.h
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
#ifndef MES
#define MES
#include "ifsim.h"
#include "cktdefs.h"
#include "
www.eeworm.com/read/133952/5896777
m simul.m
% Script file: simul.m
%
% Purpose:
% This program solves a system of 8 linear equations in 8
% unknowns (a*x = b), using both full and sparse matrices.
%
% Record of revisions:
%