首页 > 其他 > 详细

Diag:Diagonal matrices and diagonals of a matrix

时间:2016-01-07 18:15:10      阅读:231      评论:0      收藏:0      [点我收藏+]

Diag:Diagonal matrices and diagonals of a matrix 

Syntax

X = diag(v,k)

X = diag(v)

v = diag(X,k)

v = diag(X)

Description

X = diag(v,k) when v is a vector of n components, returns a square matrix X of order n+abs(k), with the elements of v on the kth diagonal. k = 0 represents the main diagonal, k > 0 above the main diagonal, and k < 0 below the main diagonal. 

X = diag(v) puts v on the main diagonal, same as above with k = 0. 

v = diag(X,k) for matrix X, returns a column vector v formed from the elements of the kth diagonal of X. 

v = diag(X) returns the main diagonal of X, same as above with k = 0.

example_

diag([1 2 3],-2)  % 此时k=-2,注意黑色的部分

ans =

     0     0     0     0     0

     0     0     0     0     0

     1     0     0     0     0

     0     2     0     0     0

     0     0     3     0     0

diag([1 2 3],2) % 此时k=2,注意黑色的部分

ans =

     0     0     1     0     0

     0     0     0     2     0

     0     0     0     0     3

     0     0     0     0     0

     0     0     0     0     0

diag([1 2 3])  % 此时k=0,直接返回对角矩阵

ans =

 

     1     0     0

     0     2     0

     0     0     3

diag([1 2 3;4 5 6; 7 8 9 ]) %若输入矩阵,返回对角

ans =

     1

     5

     9

Diag:Diagonal matrices and diagonals of a matrix

原文:http://www.cnblogs.com/qqhfeng/p/5110532.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!