代码搜索:Matrix

找到约 10,000 项符合「Matrix」的源代码

代码结果 10,000
www.eeworm.com/read/373344/9462196

readme

============= README file for testing the Iterative Templates ================== Version 1.1 August, 2006. The directory in which this README file is found contains the MATLAB versions of the algor
www.eeworm.com/read/373250/9467423

m matprint.m

% MATPRINT - prints a matrix with specified format string % % Usage: matprint(a, fmt, fid) % % a - Matrix to be printed. % fmt - C style format string to use for
www.eeworm.com/read/177101/9469712

m gravcenters.m

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% %% Prof. Sclaroff's CS585 Image avd Video Processing
www.eeworm.com/read/176823/9483095

m conffig.m

function fh=conffig(y, t) %CONFFIG Display a confusion matrix. % % Description % CONFFIG(Y, T) displays the confusion matrix and classification % performance for the predictions mat{y} compared with
www.eeworm.com/read/176823/9483115

m netgrad.m

function g = netgrad(w, net, x, t) %NETGRAD Evaluate network error gradient for generic optimizers % % Description % % G = NETGRAD(W, NET, X, T) takes a weight vector W and a network data % structure
www.eeworm.com/read/176823/9483308

m mlphess.m

function [h, hdata] = mlphess(net, x, t, hdata) %MLPHESS Evaluate the Hessian matrix for a multi-layer perceptron network. % % Description % H = MLPHESS(NET, X, T) takes an MLP network data structure
www.eeworm.com/read/372592/9500802

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/372592/9500805

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/372592/9500939

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/372592/9500954

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