代码搜索:LinearAlgebra
找到约 59 项符合「LinearAlgebra」的源代码
代码结果 59
www.eeworm.com/read/360545/10088502
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)
www.eeworm.com/read/309605/13667885
cpp ds.cpp
#include
#include
#include
typedef struct student
{
long id;
char name[10];
float math1;
float math2;
float linearalgebra;
fl
www.eeworm.com/read/476406/6760753
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)
www.eeworm.com/read/409260/11338500
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)
www.eeworm.com/read/258562/11853995
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)
www.eeworm.com/read/221870/14716508
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)
www.eeworm.com/read/208614/15242242
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)
www.eeworm.com/read/140727/5782421
cc linalg_00.cc
// file: $isip/class/numeric/LinearAlgebra/linalg_00.cc
// version: $Id: linalg_00.cc,v 1.2 2001/04/29 20:01:21 srivasta Exp $
//
// there is no source code in this file
//
// isip include files
//
www.eeworm.com/read/140727/5782420
cc linalg_02.cc
// file: $isip/class/numeric/LinearAlgebra/linalg_02.cc
// version: $Id: linalg_02.cc,v 1.3 2001/08/27 20:22:05 hamaker Exp $
//
// isip include files
//
#include "LinearAlgebra.h"
#include
www.eeworm.com/read/140727/5782645
cc example.cc
// file: $isip/doc/examples/class/numeric/numeric_example_00/example.cc
// version: $Id: example.cc,v 1.1 2001/04/27 02:30:01 srivasta Exp $
//
// isip include files
//
#include
#in