代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/115703/15004001
txt qrbksb.txt
Sub QRBKSB(A(), N, Q(), B(), X())
For I = 1 To N
Sum = 0#
For J = 1 To N
Sum = Sum + Q(I, J) * B(J)
Next J
X(I) = Sum
Next I
For I = N T
www.eeworm.com/read/115703/15004011
txt chobsb.txt
Sub CHOBSB(A(), N, D(), B())
For I = 1 To N
Sum = B(I)
For J = 1 To I - 1
Sum = Sum - A(I, J) * B(J)
Next J
B(I) = Sum
Next I
For I = N
www.eeworm.com/read/216488/15005733
m getlot.m
function F=GetLOT(N,rxx);
% GetLOT Lapped Orthogonal Transform of size 2NxN
% This function returns the synthesis matrix for the lapped orthogonal
% transform of size 2NxN, where we s
www.eeworm.com/read/115635/15005779
cpp lstsqr.cpp
/******************************************************
* PROGRAM TO DEMONSTRATE ONE DIMENSIONAL OPERATION *
* OF THE MULTI-NONLINEAR REGRESSION SUBROUTINE *
* ---------------------------
www.eeworm.com/read/216463/15006048
html encoding.html
Encoding Message Blocks
Encoding Message Blocks
To use a code to send messages, we must define a mapping from a bit
vector, s, of len
www.eeworm.com/read/216463/15006115
html dep-h.html
Linear Dependence in Parity Check Matrices
Linear Dependence in Parity Check Matrices
If a code is specified by means of a M by
www.eeworm.com/read/216367/15017070
txt d8r3.txt
Private Sub Command1_Click()
'PROGRAM D8R3
'Driver for routine TRED2
NP = 3
Dim A(3, 3), C(3, 3), D(3), E(3), F(3, 3)
A(1, 1) = 1#: A(1, 2) = 2#: A(1, 3) = 3#
A(2, 1) = 2
www.eeworm.com/read/216367/15017072
txt d8r6.txt
Private Sub Command1_Click()
'PROGRAM D8R6
'Driver for routine ELMHES
NP = 5
Dim A(5, 5), R(5), C(5)
A(1, 1) = 1#: A(1, 2) = 2#: A(1, 3) = 300#: A(1, 4) = 4#: A(1, 5) = 5#
www.eeworm.com/read/216367/15017945
txt qrbksb.txt
Sub QRBKSB(A(), N, Q(), B(), X())
For I = 1 To N
Sum = 0#
For J = 1 To N
Sum = Sum + Q(I, J) * B(J)
Next J
X(I) = Sum
Next I
For I = N T
www.eeworm.com/read/216367/15017956
txt chobsb.txt
Sub CHOBSB(A(), N, D(), B())
For I = 1 To N
Sum = B(I)
For J = 1 To I - 1
Sum = Sum - A(I, J) * B(J)
Next J
B(I) = Sum
Next I
For I = N