How can I create it?

1 visualización (últimos 30 días)
Taner Cokyasar
Taner Cokyasar el 12 de Feb. de 2016
Comentada: Star Strider el 12 de Feb. de 2016
How can I create a 5x5 matrix with the following criterion: aij = 2cos(0.4(i-j)π)

Respuesta aceptada

Star Strider
Star Strider el 12 de Feb. de 2016
A bit more efficiently, using meshgrid:
[i,j] = meshgrid(1:5);
a = 2*cos(0.4*(i-j)*pi);
  2 comentarios
Taner Cokyasar
Taner Cokyasar el 12 de Feb. de 2016
Thank you very much. It works out great!
Star Strider
Star Strider el 12 de Feb. de 2016
My pleasure!
The meshgrid function can make a number of matrix calculations easier.

Iniciar sesión para comentar.

Más respuestas (1)

jgg
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)));

Categorías

Más información sobre Resizing and Reshaping Matrices 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