代码搜索:eigenvector
找到约 273 项符合「eigenvector」的源代码
代码结果 273
www.eeworm.com/read/258562/11854330
f90 eigen.f90
program main
use IMSL
implicit none
real :: A(3,3) = (/ 1,0,0,&
0,2,0,&
0,0,3 /)
real :: eigenvalue(3)
real :: eigenvector(3,3)
integer i
eigenval
www.eeworm.com/read/341613/12075297
m 5-12.m
%例程5-12 利用特征向量法估计功率谱
% e.g.5-12.m for example5-12;
% to test function peig;
clf;
clear all;
% Generate the signal plus white noise and show
N=1024; % number of sampling dat
www.eeworm.com/read/218361/14925530
asv discretisationeigenvectordata.asv
function Y = discretisationEigenVectorData(EigenVector)
%
% Timothee Cour, Stella Yu, Jianbo Shi, 2004
[n,k]=size(EigenVector);
[Maximum,J]=max(EigenVector');
Y=sparse(1:n,J',1,n,k);
www.eeworm.com/read/218361/14925535
m discretisationeigenvectordata.m
function Y = discretisationEigenVectorData(EigenVector)
% Y = discretisationEigenVectorData(EigenVector)
%
% discretizes previously rotated eigenvectors in discretisation
% Timothee Cour, Stella Y
www.eeworm.com/read/208614/15242347
f90 eigen.f90
program main
use IMSL
implicit none
real :: A(3,3) = (/ 1,0,0,&
0,2,0,&
0,0,3 /)
real :: eigenvalue(3)
real :: eigenvector(3,3)
integer i
eigenval
www.eeworm.com/read/475765/6778070
m ex4_2.m
% EX4_2.M Simple example of A*x=lam*x
% to test Example 4.2
clear
A=[3 1;1 3]
x=[1 -1]' % Example eigenvector
y=A*x % Check results
y1=2*x % y1=y?
www.eeworm.com/read/367160/9771966
f zlaein.f
SUBROUTINE ZLAEIN( RIGHTV, NOINIT, N, H, LDH, W, V, B, LDB, RWORK,
$ EPS3, SMLNUM, INFO )
*
* -- LAPACK auxiliary routine (version 3.1) --
* Univ. of Tennessee, U
www.eeworm.com/read/415746/11055898
m 5-12.m
%例程5-12 利用特征向量法估计功率谱
% e.g.5-12.m for example5-12;
% to test function peig;
clf;
clear all;
% Generate the signal plus white noise and show
N=1024; % number of sampling dat
www.eeworm.com/read/146520/12641021
asv discretisationeigenvectordata.asv
function Y = discretisationEigenVectorData(EigenVector)
%
% Timothee Cour, Stella Yu, Jianbo Shi, 2004
[n,k]=size(EigenVector);
[Maximum,J]=max(EigenVector');
Y=sparse(1:n,J',1,n,k);
www.eeworm.com/read/146520/12641027
m discretisationeigenvectordata.m
function Y = discretisationEigenVectorData(EigenVector)
% Y = discretisationEigenVectorData(EigenVector)
%
% discretizes previously rotated eigenvectors in discretisation
% Timothee Cour, Stella Y