Create triangular matrix from vector

I have a vector, v = [x1, x2, x3 ....,xn]
I want to create a matrix from it in two ways: Upper triangular
x1 x2 x3.... xn
0 x2 x3 .... xn
0 0 x3 .....xn
. . . . . . ...
0 0 0 . . . . xn
Next, lower triangular:
x1 0 0 . .. 0
x1 x2 0 .... 0
. . . . .
x1 x2 .........xn
How can I do it without loops and conditional statements ?
Thank you.

2 个评论

This looks like a homework question. Have you tried any possible solutions? Please post what you have tried and ask a specific question about what you don't understand.
It is already answered here. https://www.mathworks.com/matlabcentral/answers/114517-transforming-vector-into-triangular-matrix?s_tid=answers_rc1-1_p1_MLT

请先登录,再进行评论。

 采纳的回答

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by