代码搜索:Definite

找到约 349 项符合「Definite」的源代码

代码结果 349
www.eeworm.com/read/161189/10440107

m ldltdown.m

% % [newL,newD]=ldltdown(L,D,v) % % This function downdates the Cholesky factorization of A to the Cholesky % factorization of A-vv'. i.e. If % % A=L*D*L' % % then % % A-v*v'=newL*newD*newL' %
www.eeworm.com/read/333209/7154842

m schol.m

%SCHOL Cholesky factorization for positive semidefinite matrices % % Syntax: % [L,def] = schol(A) % % In: % A - Symmetric pos.semi.def matrix to be factorized % % Out: % L - Lower triangular
www.eeworm.com/read/303058/13822613

m schol.m

%SCHOL Cholesky factorization for positive semidefinite matrices % % Syntax: % [L,def] = schol(A) % % In: % A - Symmetric pos.semi.def matrix to be factorized % % Out: % L - Lower triangular
www.eeworm.com/read/407295/11422499

m schol.m

%SCHOL Cholesky factorization for positive semidefinite matrices % % Syntax: % [L,def] = schol(A) % % In: % A - Symmetric pos.semi.def matrix to be factorized % % Out: % L - Lower triangular
www.eeworm.com/read/346712/11729642

java choleskydecomposition.java

/* * This software is a cooperative product of The MathWorks and the National * Institute of Standards and Technology (NIST) which has been released to the * public domain. Neither The MathWorks no
www.eeworm.com/read/251528/12339496

m schol.m

%SCHOL Cholesky factorization for positive semidefinite matrices % % Syntax: % [L,def] = schol(A) % % In: % A - Symmetric pos.semi.def matrix to be factorized % % Out: % L - Lower triangular
www.eeworm.com/read/187840/8596695

java choleskydecomposition.java

package com.biolab.node.nexTest.Jama; /** Cholesky Decomposition. For a symmetric, positive definite matrix A, the Cholesky decomposition is an lower triangular matrix L so that
www.eeworm.com/read/358827/10178442

m rmbrg.m

function [x,R,err,N] = rmbrg(f,a,b,tol,K) %construct Romberg table to find definite integral of f over [a,b] h = b - a; N = 1; if nargin < 5 K = 10; end R(1,1) = h/2*(feval(f,a)+ feval(f,b)); for
www.eeworm.com/read/358614/10183800

java choleskydecomposition.java

package Jama; /** Cholesky Decomposition. For a symmetric, positive definite matrix A, the Cholesky decomposition is an lower triangular matrix L so that A = L*L'. If
www.eeworm.com/read/447276/7555363

java choleskydecomposition.java

package Jama; /** Cholesky Decomposition. For a symmetric, positive definite matrix A, the Cholesky decomposition is an lower triangular matrix L so that A = L*L'. If