代码搜索:LinearAlgebra

找到约 59 项符合「LinearAlgebra」的源代码

代码结果 59
www.eeworm.com/read/182475/9201893

pdf linearalgebra.pdf

www.eeworm.com/read/357705/10202644

pdf linearalgebra.pdf

www.eeworm.com/read/140727/5782418

h linearalgebra.h

// file: $isip/class/numeric/LinearAlgebra/LinearAlgebra.h // version: $Id: LinearAlgebra.h,v 1.7 2002/07/11 03:35:33 picone Exp $ // // make sure definitions are only made once // #ifndef ISIP_LINEA
www.eeworm.com/read/461961/1548886

h linearalgebra.h

// Linear Algebra routines #pragma once #include "Float.h" #include "Vector.h" namespace Mathematics { /// Linear algebra routines. namespace LinearAlgebra { ///
www.eeworm.com/read/349580/3142497

tex linearalgebra.tex

\chapter{Linear algebra} \devnote{Since this chapter was written, the \dolfin{} linear algebra interface has undergone some changes that are not documented here. As a result, some of the informat
www.eeworm.com/read/304962/3782928

h linearalgebra.h

/****************************************************************** * Core Library Version 1.7, August 2004 * Copyright (c) 1995-2002 Exact Computation Project * * File: LinearAlgebra.h * Synops
www.eeworm.com/read/407519/2262797

tex linearalgebra.tex

\chapter{Linear algebra} \devnote{Since this chapter was written, the \dolfin{} linear algebra interface has undergone some changes that are not documented here. As a result, some of the informat
www.eeworm.com/read/140727/5782419

cc linalg_05.cc

// file: $isip/class/numeric/LinearAlgebra/linalg_05.cc // version: $Id: linalg_05.cc,v 1.3 2001/08/27 20:22:06 hamaker Exp $ // // isip include files // #include "LinearAlgebra.h" // method: linear
www.eeworm.com/read/376037/9335284

f90 determinant.f90

module LinearAlgebra implicit none contains ! 求矩阵的Determinant值 real function Determinant(matrix) real :: matrix(:,:) real, allocatable :: ma(:,:) integer :: i,N N = size(matrix,1)