need mat lab coding for circulant matrix
Afficher commentaires plus anciens
A=[0 1 0 0 0 1
1 0 1 0 0 0
0 1 0 1 0 0
0 0 1 0 1 0
0 0 0 1 0 1
1 0 0 0 1 0]
1 commentaire
Awais Saeed
le 12 Août 2021
A = [0 1 0 0 0 1] % first row
B = toeplitz(A) % circulant matrix
Réponses (0)
Catégories
En savoir plus sur MATLAB Report Generator dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!