How to create this matrix shown in the screenshot?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Prakash S R
el 27 de Abr. de 2022
toeplitz() is your friend!
toeplitz([4 0 -2 0 0 0])
4 comentarios
Torsten
el 27 de Abr. de 2022
Logically, it should be
toeplitz([4, 0, -2, zeros(1,29)])
shouldn't it ?
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!