Problem 43291. Tridiagonal matrix

Given vectors u and v, make a tri-diagonal symmetric matrix such that u is in the main diagonal and v is below and above diagonal

u = [1 4 5 6]
v = [3 8 2]

the result would be:

[ 1     3     0     0
  3     4     8     0
  0     8     5     2
  0     0     2     6 ]

Solution Stats

85.19% Correct | 14.81% Incorrect
Last Solution submitted on Oct 26, 2022

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers40

Suggested Problems

More from this Author2

Problem Tags

Community Treasure Hunt

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

Start Hunting!