How can I create it?
Mostrar comentarios más antiguos
How can I create a 5x5 matrix with the following criterion: aij = 2cos(0.4(i-j)π)
Respuesta aceptada
Más respuestas (1)
jgg
el 12 de Feb. de 2016
Try this
A = 2*cos(0.4.*pi.*(repmat([1:5]',1,5) - repmat([1:5],5,1)));
1 comentario
Taner Cokyasar
el 12 de Feb. de 2016
Categorías
Más información sobre Data Distribution Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!