How to generate a symmetric Toeplitz matrix?

2 visualizaciones (últimos 30 días)
Omar B.
Omar B. el 18 de En. de 2020
Editada: Omar B. el 26 de En. de 2020
How to generate a symmetric Toeplitz matrix ?

Respuesta aceptada

Stephan
Stephan el 18 de En. de 2020
Editada: Stephan el 18 de En. de 2020
>> toeplitz([-pi 0 pi])
ans =
-3.1416 0 3.1416
0 -3.1416 0
3.1416 0 -3.1416
>> toeplitz([-pi -pi/2 0 pi/2 pi])
ans =
-3.1416 -1.5708 0 1.5708 3.1416
-1.5708 -3.1416 -1.5708 0 1.5708
0 -1.5708 -3.1416 -1.5708 0
1.5708 0 -1.5708 -3.1416 -1.5708
3.1416 1.5708 0 -1.5708 -3.1416
  5 comentarios
Omar B.
Omar B. el 19 de En. de 2020
Thank you so much
Stephan
Stephan el 19 de En. de 2020
Did you notice that you can accept and/or vote for useful answers?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by