代码搜索:triangular

找到约 1,594 项符合「triangular」的源代码

代码结果 1,594
www.eeworm.com/read/451385/7466242

m bslashtx.m

function x = bslashtx(A,b) % BSLASHTX Solve linear system (backslash) % x = bslashtx(A,b) solves A*x = b [n,n] = size(A); if isequal(triu(A,1),zeros(n,n)) % Lower triangular x = forward
www.eeworm.com/read/448535/7531566

m backsub.m

function x = backsub(U,b) % % solve Ux = b, where U is upper triangular % % function x = backsub(U,b) % U = upper triangular matrix % b = right and side % % x = solution % Copyright 1999 b
www.eeworm.com/read/397115/8066805

m som_connection.m

function C=som_connection(S) %SOM_CONNECTION Connection matrix for 'hexa' and 'rect' lattices % % C=som_connection(S) % % C=som_connection(sMap); % C=som_connection(sTopol); % C=som_connection({'h
www.eeworm.com/read/331448/12827524

m som_connection.m

function C=som_connection(S) %SOM_CONNECTION Connection matrix for 'hexa' and 'rect' lattices % % C=som_connection(S) % % C=som_connection(sMap); % C=som_connection(sTopol); % C=som_connection({'h
www.eeworm.com/read/244790/12843771

m som_connection.m

function C=som_connection(S) %SOM_CONNECTION Connection matrix for 'hexa' and 'rect' lattices % % C=som_connection(S) % % C=som_connection(sMap); % C=som_connection(sTopol); % C=som_connection({'h
www.eeworm.com/read/141739/12988737

m som_connection.m

function C=som_connection(S) %SOM_CONNECTION Connection matrix for 'hexa' and 'rect' lattices % % C=som_connection(S) % % C=som_connection(sMap); % C=som_connection(sTopol); % C=som_connection({'h
www.eeworm.com/read/141692/12990929

m bslashtx.m

function x = bslashtx(A,b) % BSLASHTX Solve linear system (backslash) % x = bslashtx(A,b) solves A*x = b [n,n] = size(A); if isequal(triu(A,1),zeros(n,n)) % Lower triangular x = forward
www.eeworm.com/read/241192/13164287

m utchol.m

function C = utchol(P) % % for P symmetric and positive definite, % computes upper triangular C such that % C*C' = P % [n,m] = size(P); if (n-m) error('non-square argument'); end; for j=m:-1
www.eeworm.com/read/139007/13195404

m matsignt.m

function S = matsignt(T) %MATSIGNT Matrix sign function of a triangular matrix. % S = MATSIGN(T) computes the matrix sign function S of the % upper triangular matrix T usin
www.eeworm.com/read/139007/13195457

m cod.m

function [U, R, V] = cod(A, tol) %COD Complete orthogonal decomposition. % [U, R, V] = COD(A, TOL) computes a decomposition A = U*T*V, % where U and V are unitary, T = [R 0; 0 0] has