代码搜索:eigenvector

找到约 273 项符合「eigenvector」的源代码

代码结果 273
www.eeworm.com/read/268065/11155456

c powermethod.c

/* This program implements the power method of finding the dominant * eigenvector and eigenvalue of a matrix. (see the description below) * * This program is compiled using gcc 3.4.2 with mingw
www.eeworm.com/read/267790/11162577

m maxeig.m

%MAXEIG Maximum eigenvalue and the corresponding eigenvector. % [L, Q] = MAXEIG(A) returns the maximum eigenvalue L and the % corresponding eigenvector Q of the square matrix A. Maximum is % in the s
www.eeworm.com/read/372592/9500791

txt d8r1.txt

Private Sub Command1_Click() 'PROGRAM D8R1 'Driver for routine JACOBI NP = 3 Dim D(3), V(3, 3), R(3) Dim A(3, 3), E(3, 3) A(1, 1) = 1#: A(1, 2) = 2#: A(1, 3) = 3# A(
www.eeworm.com/read/455119/7377611

m pcaerr.m

function [err, minerr, evals] = pcaerr(A, W) % PCAERR Compute the average reconstruction error for a PCA matrix. % % [err, minerr] = pcaerr(A, W) % A is the data matrix where each column is a
www.eeworm.com/read/448535/7531395

m neweig.m

function [T,Q] = neweig(A) % % Compute the eigenvalues and eigenvector of a real symmetric matrix A % % function [T,Q] = neweig(A) % % A = matrix whose eigendecomposition is sought % % T = di
www.eeworm.com/read/399740/7839313

cpp caculate_greatest_eigen.cpp

/************************************************************** * http://pagesperso-orange.fr/jean-pierre.moreau/c_matrices.html* *Calculate the greatest eigenvalue of a real square matrix * *
www.eeworm.com/read/434325/7874117

m a11_2.m

%--------------------------------------------------------------------------- echo on; clc; %A11_2 MATLAB script file for implementing Algorithm 11.2 % % NUMERICAL METHODS: MATLAB Programs, (c) J
www.eeworm.com/read/434325/7874192

m a11_1.m

%--------------------------------------------------------------------------- echo on; clc; %A11_1 MATLAB script file for implementing Algorithm 11.1 % % NUMERICAL METHODS: MATLAB Programs, (c) J
www.eeworm.com/read/320368/6295199

txt d8r1.txt

Private Sub Command1_Click() 'PROGRAM D8R1 'Driver for routine JACOBI NP = 3 Dim D(3), V(3, 3), R(3) Dim A(3, 3), E(3, 3) A(1, 1) = 1#: A(1, 2) = 2#: A(1, 3) = 3# A(
www.eeworm.com/read/493843/6391503

m ev.m

function Px = ev(x,p,M) %EV Frequency estimation using the eigenvector method %-- %USAGE Px = ev(x,p,M) % % The input sequence x is assumed to consist of p complex % exponentials in white noise.