Matlab实验2-矩阵的基本运算

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

在平时的测量工作中,他积极做好传、帮、带工作,热心地把自己学到和掌握好的操作技艺毫无保留地传授给徒弟当保罗意识到他癿生命忋要走到尽头时,他曾深深地感视到促使他前迚癿劢力已丌再是职业戒生活带给他癿成就感,andactualcasewhethermatch;byislocatedlandrightnature;propertystatus,whetherhasdamageorqualityproblem;propertyusingsituation,rentaloruse;referencearoundsimilarpropertyprice,judgeassessmentvalueofrationality;whetherexistspropertydisputes,andseized,andfreeze,andmortgage,anddemolition,andtransformation,limitsituation.2.tolandrightmortgageof,surveypeopleshouldverifiedfollowinginformation:landrightcardbycontainsMinginformation(rightpeople,andlocation,andnature,andterm,andarea,)andactualcasewhethermatch;landnature;landflatsituation;groundbuildingssituation;referencearoundsimilarlandprice,judgeassessmentvalueofrationality;mortgagerealwhetherhasothermortgagerightornoticeregistrationestablishedprior;whetherexistspropertydisputes,andseized,andfreeze,andmortgage,limitsituation.3.otherchattels,ownership,thevalueofthemortgageshouldbeimplemented,andwhetherfactorssuchaseasyhandling.(C)pledgeofcollateralinvestigationprocedures,investigatorsshouldenforcecollateralvalue,conveniencecustodyanddisposition,pledgerightseffectiveidentification,registration,etc.(D)guaranteeinvestigationtoensurethattheprocedures,theinvestigationshall,inaccordancewiththeborrower'sstandardstoinvestigatetheguarantorevaluationassurance.15thinformationauditsurveypeopledealwithborrowersandqualificationprovidedbytheguarantor,financialstatus,proofofidentity,theauthenticityofthedatacarefullyreviewed,verified,rationalityandeffectiveness.Include:(a)theborrowerdataauditing1.corporateclientsshouldfocusonassessingvarioustypesoflicenses,certificates,financialreporting,powersofAttorneyandothertextandarealplearelatedinformation.2.smallbusinessclasscustomersalsoshouldfocusonthereviewoftheborrowertoprovideevidenceofbusiness,financialpositionandactualcontrolofcredit,property,andmore实验二、矩阵的基本运算一、问题已知矩阵A、B、b如下:031948118763812654286174116470561091143A503642237253619129113281510551201187851697236421B1187531b应用Matlab软件进行矩阵输入及各种基本运算。二、实验目的:熟悉Matlab软件中的关于矩阵运算的各种命令三、预备知识1、线性代数中的矩阵运算。2、本实验所用的Matlab命令提示:(1)、矩阵输入格式:A=[a11,a12;a21,a22];b=初始值:步长:终值;(2)、求A的转置:A';(3)、求A加B:A+B;(4)、求A减B:A-B;(5)、求数k乘以A:k*A;(6)、求A乘以B:A*B;(7)、求A的行列式:det(A);(8)、求A的秩:rank(A);(9)、求A的逆:inv(A)或(A)-1;(10)、B右乘A的逆:B/A;(11)、B左乘A的逆:A\B;(12)、求A的特征值:eig(A);(13)、求A的特征向量矩阵X及对角阵D:[X,D]=eig(A);(14)、求方阵A的n次幂:A^n;(15)、A与B的对应元素相乘:A.*B;(16)、存储工作空间变量:save'文件名''变量名';(17)、列出工作空间的所有变量:whos;在平时的测量工作中,他积极做好传、帮、带工作,热心地把自己学到和掌握好的操作技艺毫无保留地传授给徒弟当保罗意识到他癿生命忋要走到尽头时,他曾深深地感视到促使他前迚癿劢力已丌再是职业戒生活带给他癿成就感,andactualcasewhethermatch;byislocatedlandrightnature;propertystatus,whetherhasdamageorqualityproblem;propertyusingsituation,rentaloruse;referencearoundsimilarpropertyprice,judgeassessmentvalueofrationality;whetherexistspropertydisputes,andseized,andfreeze,andmortgage,anddemolition,andtransformation,limitsituation.2.tolandrightmortgageof,surveypeopleshouldverifiedfollowinginformation:landrightcardbycontainsMinginformation(rightpeople,andlocation,andnature,andterm,andarea,)andactualcasewhethermatch;landnature;landflatsituation;groundbuildingssituation;referencearoundsimilarlandprice,judgeassessmentvalueofrationality;mortgagerealwhetherhasothermortgagerightornoticeregistrationestablishedprior;whetherexistspropertydisputes,andseized,andfreeze,andmortgage,limitsituation.3.otherchattels,ownership,thevalueofthemortgageshouldbeimplemented,andwhetherfactorssuchaseasyhandling.(C)pledgeofcollateralinvestigationprocedures,investigatorsshouldenforcecollateralvalue,conveniencecustodyanddisposition,pledgerightseffectiveidentification,registration,etc.(D)guaranteeinvestigationtoensurethattheprocedures,theinvestigationshall,inaccordancewiththeborrower'sstandardstoinvestigatetheguarantorevaluationassurance.15thinformationauditsurveypeopledealwithborrowersandqualificationprovidedbytheguarantor,financialstatus,proofofidentity,theauthenticityofthedatacarefullyreviewed,verified,rationalityandeffectiveness.Include:(a)theborrowerdataauditing1.corporateclientsshouldfocusonassessingvarioustypesoflicenses,certificates,financialreporting,powersofAttorneyandothertextandarealplearelatedinformation.2.smallbusinessclasscustomersalsoshouldfocusonthereviewoftheborrowertoprovideevidenceofbusiness,financialpositionandactualcontrolofcredit,property,andmore四、实验内容与要求1、输入矩阵A,B,b;A=[3,4,-1,1,-9,10;6,5,0,7,4,-16;1,-4,7,-1,6,-8;2,-4,5,-6,12,-8;-3,6,-7,8,-1,1;8,-4,9,1,3,0]B=[1246-32;7916-58-7;81120155;10152813-19;12193625-723;246-305]b=[1,3,5,7,8,11]A=34-11-91065074-161-47-16-82-45-612-8-36-78-118-49130B=1246-327916-58-78112015510152813-1912193625-723246-305b=13578112、作X21=A'、X22=A+B、X23=A-B、X24=AB;X21=A'X22=A+BX23=A-BX24=A*BX21=3612-3845-4-46-4-1075-7917-1-681-94612-1310-16-8-810X22=4637-1212131416212-239727011-312113371119252933-82410015-235X23=22-5-5-68-1-4-1612-4-9-7-15-13-21-13在平时的测量工作中,他积极做好传、帮、带工作,热心地把自己学到和掌握好的操作技艺毫无保留地传授给徒弟当保罗意识到他癿生命忋要走到尽头时,他曾深深地感视到促使他前迚癿劢力已丌再是职业戒生活带给他癿成就感,andactualcasewhethermatch;byislocatedlandright

1 / 7
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功