当前位置:网站首页>Matlab在线性代数中的应用(四):相似矩阵及二次型
Matlab在线性代数中的应用(四):相似矩阵及二次型
2022-07-05 06:42:00 【文宇肃然】
有时我们需要精确的特征值和特征向量,就须利用 Matlab 的符号运算功能。
在 Matlab 中创建符号矩阵和创建数值矩阵的形式很相似,只不过要用到符号定义函数sym。
下面介绍使用此函数创建符号矩阵的几种形式。
1、使用 sym 函数直接创建符号矩阵
此方法和直接创建数值矩阵的方法几乎完全相同。
矩阵元素可以是符号表达式,各 符号表达式的长度可以不同,矩阵元素之间可用空格或逗号分隔。
例如:
x=sym('[a+sin(d),b;1/c,d]'); y=det(x)
求得 y=(d*c*a+d*c*sin(d)-b)/c
2、将数值矩阵转化为符号矩阵
在 Matlab 中,数值矩阵不能直接参与符号运算,必须先转化为符号矩阵。
例如:
a=[2/3,sqrt(2);3,1]
a=
0.66671.4142
3.00001.0000
b=sym(a)
b=
[ 2/3, sqrt(2)]
[3,1]
3、符号矩阵的索引和修改
Matlab 的符号矩阵索引和修改同数值矩阵的索引和修改完全相同。
例如:
对上例中的矩阵 b 进行修改
b(2,2)='log(9)'
01
—
求一个正交变换 x = Py ÿ
边栏推荐
- 【软件测试】04 -- 软件测试与软件开发
- Pycahrm reports an error: indentation error: unindent does not match any outer indentation
- VLAN experiment
- 乐鑫面试流程
- 'mongoexport 'is not an internal or external command, nor is it a runnable program or batch file.
- ROS2——配置开发环境(五)
- 并发编程 — 如何中断/停止一个运行中的线程?
- NVM Downloading npm version 6.7.0... Error
- Vant Weapp SwipeCell设置多个按钮
- CGroup CPU group source code analysis
猜你喜欢
随机推荐
Written examination notes
UIO driven framework
[Gaode map POI stepping pit] amap Placesearch cannot be used
【软件测试】06 -- 软件测试的基本流程
Technology blog learning website
mingling
[MySQL 8.0 does not support capitalization of table names - corresponding scheme]
Instruction execution time
Redis-02. Redis command
Edge calculation data sorting
cgroup_ memcg
inux摄像头(mipi接口)简要说明
Getting started with typescript
Empire help
LSA Type Explanation - lsa-5 (type 5 LSA - autonomous system external LSA) and lsa-4 (type 4 LSA - ASBR summary LSA) explanation
The problem of Chinese garbled code in the vscode output box can be solved once for life
. Net core stepping on the pit practice
How to answer when you encounter a jet on CSDN?
A brief introduction to heading/pitch/roll and omega/phi/kappa
LSA Type Explanation - detailed explanation of lsa-2 (type II LSA network LSA) and lsa-3 (type III LSA network Summary LSA)