How to create matrix 10x10 with same diagonal vector and empry value

4 次查看(过去 30 天)
I am new to matlab and i need to create a 10x10 matrix, which consists of same number by diagonal, triangular matrix and empty values (like on image)

采纳的回答

Stephen23
Stephen23 2020-11-28
M = toeplitz([2,1,zeros(1,8)])
M = 10×10
2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 1 2

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by