代码搜索:triangular
找到约 1,594 项符合「triangular」的源代码
代码结果 1,594
www.eeworm.com/read/139007/13195469
m gqr.m
function [U, Q, L, S] = gqr(A, B, partial)
%GQR Generalized QR factorization.
% [U, Q, L, S] = GQR(A, B, partial) factorizes
% the m-by-n A and p-by-n B, where m >= n >= p, as
%
www.eeworm.com/read/139007/13195585
m trap2tri.m
function [Q, T] = trap2tri(L)
%TRAP2TRI Unitary reduction of trapezoidal matrix to triangular form.
% [Q, T] = TRAP2TRI(L), where L is an m-by-n lower trapezoidal
% matrix with m
www.eeworm.com/read/318840/13471270
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/316867/13515738
java lotteryarray.java
/**
* @version 1.0 27 Mar 1998
* @author Cay Horstmann
*/
import corejava.*;
public class LotteryArray
{ public static long lotteryOdds(int high, int number)
{ long r = 1;
in
www.eeworm.com/read/316412/13523363
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(A,b);
www.eeworm.com/read/315278/13547262
java lotteryarray.java
/**
* @version 1.0 27 Mar 1998
* @author Cay Horstmann
*/
import corejava.*;
public class LotteryArray
{ public static long lotteryOdds(int high, int number)
{ long r = 1;
in
www.eeworm.com/read/314385/13568729
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/303048/13823266
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/143434/5757924
c mload.c
/*
$Log: mload.c,v $
Revision 1.1 2000/06/05 04:45:12 robertj
Added LPC-10 2400bps codec
* Revision 1.1 1996/08/19 22:31:25 jaf
* Initial revision
*
*/
#ifdef P_R_O_T_O_T_Y_P_E_S
extern in
www.eeworm.com/read/140779/5781232
c,v mload.c,v
head 1.1;
access;
symbols;
locks; strict;
comment @ * @;
1.1
date 96.08.19.22.31.25; author jaf; state Exp;
branches;
next ;
desc
@@
1.1
log
@Initial revision
@
text
@/*
$Log$
*/
#ifdef P_R_O