代码搜索:eigenvector

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

代码结果 273
www.eeworm.com/read/282288/9105818

input-eigen1

/* ================================================================ */ /* Test linear equation solvers and eigenvalue/eigenvector routines */ /* =======================================================
www.eeworm.com/read/282286/9106143

input-elcentro

/* * ============================================================ * Modal Analysis of Five Story Steel Moment Frame subject to * El Centro ground motion. * * Written By: Mark Austin
www.eeworm.com/read/372592/9500788

txt d8r2.txt

Private Sub Command1_Click() 'PROGRAM D8R2 'Driver for routine EIGSRT NP = 3 Dim D(3), V(3, 3), A(3, 3) A(1, 1) = 1#: A(1, 2) = 2#: A(1, 3) = 3# A(2, 1) = 2#: A(2, 2) = 2
www.eeworm.com/read/360770/10079222

m powereig.m

function [c,x,k] = powereig (A,tol,m,dir,dm) %---------------------------------------------------------------- % Usage: [c,x,k] = powereig (A,tol,m,dir,dm) % % Description: Apply the power m
www.eeworm.com/read/422108/10664228

asv givens.asv

clc; clear; %%%%Givens旋转法求解对称阵的所有特征值和对应的特征向量 N=50;%矩阵阶数 v=[100 1:1:(N-1)]; A=toeplitz(v); T=zeros(N,N); B=zeros(1,N); eigenvector=eye(N,N);%特征向量 eigenvalue=zeros(1,N);%特征值 %迭代过程 whi
www.eeworm.com/read/422108/10664240

m givens.m

clc; clear; %%%%Givens旋转法求解对称阵的所有特征值和对应的特征向量 N=50;%矩阵阶数 v=[100 1:1:(N-1)]; A=toeplitz(v); T=zeros(N,N); B=zeros(1,N); eigenvector=eye(N,N);%特征向量 eigenvalue=zeros(1,N);%特征值 %迭代过程 whi
www.eeworm.com/read/271037/11011232

input-elcentro

/* * ============================================================ * Modal Analysis of Five Story Steel Moment Frame subject to * El Centro ground motion. * * Written By: Mark Austin
www.eeworm.com/read/439841/7700934

m mineig.m

%MINEIG Minimum eigenvalue and the corresponding eigenvector. % [L, Q] = MINEIG(A) returns the minimum eigenvalue L and the % corresponding eigenvector Q of the square matrix A. Minimum is % in the s
www.eeworm.com/read/140062/13111828

cpp d8r2.cpp

# include # include # include # include void main() { //program d8r2 //driver for routine eigsrt int i,nrot,j,np = 3; double d[4], v
www.eeworm.com/read/241049/13175130

cpp d8r2.cpp

# include # include # include # include void main() { //program d8r2 //driver for routine eigsrt int i,nrot,j,np = 3; double d[4], v