How to generate a symmetric Toeplitz matrix?
    7 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
How to generate a symmetric Toeplitz matrix ?
0 Commenti
Risposta accettata
  Stephan
      
      
 il 18 Gen 2020
        
      Modificato: Stephan
      
      
 il 18 Gen 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 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


