代码搜索:determinant

找到约 368 项符合「determinant」的源代码

代码结果 368
www.eeworm.com/read/364595/9903392

dsw determinant.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/364595/9903393

plg determinant.plg

Build Log --------------------Configuration: Determinant - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\A
www.eeworm.com/read/364595/9903395

opt determinant.opt

www.eeworm.com/read/364595/9903396

dsp determinant.dsp

# Microsoft Developer Studio Project File - Name="Determinant" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x8
www.eeworm.com/read/364595/9903400

ncb determinant.ncb

www.eeworm.com/read/400645/11571027

cc determinant.cc

// This may look like C code, but it is really -*- C++ -*- /* ************************************************************************ * * Linear Algebra Package * * Compute the determinant
www.eeworm.com/read/459034/1575178

java determinant.java

package jmathlib.toolbox.jmathlib.matrix; import jmathlib.core.tokens.*; import jmathlib.core.tokens.numbertokens.DoubleNumberToken; import jmathlib.core.functions.ExternalFunction; /**An exte
www.eeworm.com/read/432932/8562618

m determinant_matrix.m

% determinant_matrix.m % 数值矩阵的行列式 for i=1:3 A=magic(i+2); a(i)=det(A); disp('矩阵:'); disp(A); disp('矩阵的行列式:'); disp(a(i)); end % 符号矩阵的行列式 disp('符号矩阵的行列式') syms t; B=[cos(-t),sin(t);-sin(t+
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)
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)