




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
EigenvaluesandE=EIG(X)isavectorcontainingtheeigenvaluesofasquarematrixX.[V,D]=EIG(X)producesadiagonalmatrixDofeigenvaluesandafullmatrixVwhosecolumnsarethecorrespondingeigenvectorssothatX*V=V*D.[V,D]=EIG(X,'nobalance')performsthecomputationwithbalancingdisabled,whichsometimesgivesmoreaccurateresultsforcertainproblemswithunusualscaling.IfXissymmetric,EIG(X,'nobalance')isignoredsinceXisalreadybalanced.E=EIG(A,B)isavectorcontainingthegeneralizedeigenvaluesofsquarematricesAandB.[V,D]=EIG(A,B)producesadiagonalmatrixDofgeneralizedeigenvaluesandafullmatrixVwhosecolumnsarethecorrespondingeigenvectorssothatA*V=B*V*D.EIG(A,B,'chol')isthesameasEIG(A,B)forsymmetricAandsymmetricpositivedefiniteB. ItcomputesthegeneralizedeigenvaluesofAandBusingtheCholeskyfactorizationofB.EIG(A,B,'qz')ignoresthesymmetryofAandBandusestheQZalgorithm.Ingeneral,thetwoalgorithmsreturnthesameresult,howeverusingtheQZalgorithmmaybemorestableforcertainproblems.TheflagisignoredwhenAandBarenotsymmetric.Seealsocondeig,eigs,ordeig.Overloadedmethods:ReferencepageinHelpbrowserdoceig -Classicsymmetriceigenvaluetest -Wilkinson'seigenvaluetest -Diagonalscalingtoimproveeigenvalue -Conditionnumberwithrespectto -Eigenvaluesand -Eigenvaluesofquasitriangular -ReordereigenvaluesinQZ -ReordereigenvaluesinSchur -Polynomialeigenvalue -Cmex-interfacetoARPACKlibraryusedby -Findafeweigenvaluesandeigenvectorsofamatrixusing -EIGShelper -Graphicaldemonstrationofeigenvaluesandsingular -Matrixexponentialviaeigenvaluesand -FindtheeigenvalueoftheMathieu's -Provideswidth&heightadjustmentsfor -neighbor-joiningmethodforphylogenetictree -classifiesdatausingthenearest-neighbor -imputesmissingdatausingthenearest-neighbor -calculatesmolecularweightfora -Biterrorrate(BER)forRayleighandRicianfadingchannels. -Calculatetheminimumdistanceofalinearblockcode. -ConstructaRayleighfadingchannel -Selectequalizerstructureandweightupdatealgorithm. -COMMBLKFADINGCHANRayleigh/Ricianchannelhelper -MaskdynamicdialogfunctionforRayleighnoise -COMMBLKRAYLEIGHCHANRayleighchannelhelper -Sortcomplexdiscreteeigenvaluesindescending -Sortcomplexcontinuouseigenvaluesindescending -Linearquadraticregulatordesignwithoutputweighting -Linear-quadraticregulatordesignwithoutput -Lyapunovequationsolutionusingeigenvalue -Assetcovariancefromreturnserieswithexponential -Convertportfolioholdingsintoportfolio -Randomizedportfoliorisks,returns,and -Portfolioweight -Convertportfoliovalueandweightsintoportfolioholdings. -calculatesthe(weighted)movingaverageofavectorof -Weighted -WeightedAverageLifeofmortgagepool. -Weightedaverageoftheparents. -NeighborhoodoperationsusinglookuptablesEigenvaluesandeigenvectorsd=d=eig(A,B)[V,D]=eig(A)d=eig(A)returnsavectoroftheeigenvaluesofmatrixd=eig(A,B)returnsavectorcontainingthegeneralizedeigenvalues,ifAandBaresquare IfSissparseandsymmetric,youcanused=eig(S)toreturntheeigenvaluesofS.IfSissparsebutnotsymmetric,orifyouwanttoreturntheeigenvectorsofS,usethefunctioneigsinsteadof[V,D]=eig(A)producesmatricesofeigenvalues(D)andeigenvectors(V)ofmatrixA,sothat=V*D.MatrixDisthecanonicalformofA—adiagonalmatrixwithA'seigenvaluesonthemaindiagonal.MatrixVisthemodalmatrix—itscolumnsaretheeigenvectorsofA.IfWisamatrixsuchthatW'*A=D*W',thecolumnsofWarethelefteigenvectorsofA.Use[W,D]=eig(A.');W=conj(W)tocomputethelefteigenvectors.[V,D]=eig(A,'nobalance')findseigenvaluesandeigenvectorswithoutapreliminarybalancingstep.Thismaygivemoreaccurateresultsforcertainproblemswithunusualscaling.Ordinarily,balancingimprovestheconditioningoftheinputmatrix,enablingmoreaccuratecomputationoftheeigenvectorsandeigenvalues.However,ifamatrixcontainssmallelementsthatarereallyduetoroundofferror,balancingmayscalethemuptomakethemassignificantastheotherelementsoftheoriginalmatrix,leadingtoincorrecteigenvectors.Usethenobalanceoptioninthisevent.Seethebalancefunctionformoredetails.[V,D]=eig(A,B)producesadiagonalmatrixDofgeneralizedeigenvaluesandafullmatrixVwhosecolumnsarethecorrespondingeigenvectorssothatA*V=B*V*D.[V,D]=eig(A,B,flag)specifiesthealgorithmusedtocomputeeigenvaluesandeigenvectors.flagcanbe:ComputesthegeneralizedeigenvaluesofAandBusingtheCholeskyfactorizationofB.Thisisthedefaultforsymmetric(Hermitian)Aandsymmetric(Hermitian)positivedefiniteB.Ignoresthesymmetry,ifany,andusestheQZalgorithmasitwouldfornonsymmetric(non-Hermitian)AandB. Foreig(A),theeigenvectorsarescaledsothatthenormofeachis1.0.Foreig(A,B),eig(A,'nobalance'),andeig(A,B,flag),theeigenvectorsarenotnormalized.AlsonotethatifAissymmetric,eig(A,'nobalance')ignoresthenobalanceoptionsinceAisalreadybalanced.Theeigenvalueproblemistodeterminethenontrivialsolutionsofthe isann-by-nmatrix, isalengthncolumnvector,and isascalar.Thenvaluesof satisfytheequationaretheeigenvalues,andthecorrespondingvaluesof aretherighteigenvectors.Thefunctioneigsolvesfortheeigenvalues,andoptionallytheeigenvectors.Thegeneralizedeigenvalueproblemistodeterminethenontrivialsolutionsofthewhereboth aren-by-nmatricesand isascalar.Thevaluesof thatsatisfytheequationarethegeneralizedeigenvaluesandthecorrespondingvaluesof arethegeneralizedright isnonsingular,theproblemcouldbesolvedbyreducingittoastandardeigenvalue canbesingular,analternativealgorithm,calledtheQZmethod,isWhenamatrixhasnorepeatedeigenvalues,theeigenvectorsarealwaysindependentandtheeigenvectormatrixVdiagonalizestheoriginalmatrixAifappliedasasimilaritytransformation.However,ifamatrixhasrepeatedeigenvalues,itisnotsimilartoadiagonalmatrixunlessithasafull(independent)setofeigenvectors.Iftheeigenvectorsarenotindependentthentheoriginalmatrixissaidtobedefective.Evenifamatrixisdefective,thesolutionfromeigsatisfiesA*X=TheB=[
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 监督检查合同管理办法
- 客户关系管理暂行办法
- 广告招牌使用管理办法
- 福建肥料备案管理办法
- 甲襞微循环显微成像及特征参数测量研究
- 媒体编辑自我剖析材料范文
- 基金管理公司暂行办法
- 直接支付管理暂行办法
- 监狱香烟集中管理办法
- 各省奖励资金管理办法
- 青少年诗词大会备考试题库(300题)
- 软件开发管理流程制度(附全套表格模板及填写指引)
- 2022年剑河县事业单位考试真题及答案
- 药店纳入定点后使用医疗保障基金的预测性分析报告
- 自主移动机器人期末A
- 电气控制与PLC应用技术(三菱机型)高教版YL-235A送料机构控制电路的连接与编程教学案例高教版
- 《汽车保险理赔服务研究10000字(论文)》
- YY/T 1851-2022用于增材制造的医用纯钽粉末
- GB/Z 13800-2021手动轮椅车
- GB/T 6109.17-2008漆包圆绕组线第17部分:180级自粘性直焊聚酯亚胺漆包铜圆线
- GB/T 17989.2-2020控制图第2部分:常规控制图
评论
0/150
提交评论