How to create this matrix shown in the screenshot?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Akzeptierte Antwort
Prakash S R
am 27 Apr. 2022
toeplitz() is your friend!
toeplitz([4 0 -2 0 0 0])
4 Kommentare
Torsten
am 27 Apr. 2022
Logically, it should be
toeplitz([4, 0, -2, zeros(1,29)])
shouldn't it ?
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!