How can I create it?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Taner Cokyasar
le 12 Fév 2016
Commenté : Star Strider
le 12 Fév 2016
How can I create a 5x5 matrix with the following criterion: aij = 2cos(0.4(i-j)π)
0 commentaires
Réponse acceptée
Star Strider
le 12 Fév 2016
A bit more efficiently, using meshgrid:
[i,j] = meshgrid(1:5);
a = 2*cos(0.4*(i-j)*pi);
2 commentaires
Star Strider
le 12 Fév 2016
My pleasure!
The meshgrid function can make a number of matrix calculations easier.
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!