当前位置:网站首页>Day (3) of picking up matlab
Day (3) of picking up matlab
2022-04-23 15:59:00 【Sola_ Ex】
Pick up MATLAB The third day of
Matlab
Get matrix size
Commands used :
size(x);
return a That's ok b Column matrices
Special matrix
once() % whole 1 matrix
once() %n*n Of all the 1 matrix
once(m,n) %m*n Of all the 1 matrix
zeros() % whole 0 matrix
zeros(n) %n*n Of all the 0 matrix
zeros(m,n) %m*n Of all the 0 matrix
eye(n) %n*n The identity matrix of
Matrix flip
fliplr(A) % Flip left and right
flipud(A) % Flip up and down
Inverse matrix and pseudo inverse matrix
inv(A) % matrix A The inverse matrix
pinv(A) % matrix A The pseudo inverse matrix of
The rank of a matrix
rank(A) % Get matrix A The rank of
Trace of matrix
trace(A) % matrix A The trace of
Eigenvalues and eigenvectors of matrices
eig(A) % The eigenvalue
[V,D] = eig(A) % Eigenvector
版权声明
本文为[Sola_ Ex]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231554164172.html
边栏推荐
- API IX JWT auth plug-in has an error. Risk announcement of information disclosure in response (cve-2022-29266)
- [open source tool sharing] MCU debugging assistant (oscillograph / modification / log) - linkscope
- JVM - Chapter 2 - class loader subsystem
- Install redis and deploy redis high availability cluster
- 通过Feign在服务之间传递header请求头信息
- shell_ two
- Upgrade MySQL 5.1 to 5.611
- Algorithem_ ReverseLinkedList
- Go language, array, pointer, structure
- Temporal model: long-term and short-term memory network (LSTM)
猜你喜欢
随机推荐
Neodynamic Barcode Professional for WPF V11. 0
leetcode-396 旋转函数
R语言中绘制ROC曲线方法二:pROC包
Partitionby of spark operator
GRBL学习(一)
Go concurrency and channel
捡起MATLAB的第(7)天
Named in pytoch_ parameters、named_ children、named_ Modules function
linux上啟動oracle服務
R语言中实现作图对象排列的函数总结
如何进行应用安全测试(AST)
Win11/10家庭版禁用Edge的inprivate浏览功能
gps北斗高精度卫星时间同步系统应用案例
TIA botu - basic operation
Multi level cache usage
新动态:SmartMesh和MeshBox的合作新动向
Solution to the fourth "intelligence Cup" National College Students' IT skills competition (group B of the final)
Day (10) of picking up matlab
Go language slice, range, set
Read the meaning of serial port and various level signals









