Borrar filtros
Borrar filtros

-1 and 1 matrix

3 visualizaciones (últimos 30 días)
Offroad Jeep
Offroad Jeep el 5 de Mayo de 2015
Comentada: Andrei Bobrov el 5 de Mayo de 2015
Hello All,
I want to create a n X n matrix with 1row 1, 2nd row -1, 3rd row 1 , 4th row -1 and so on..... can anyone please guide me .......... thanks.........

Respuesta aceptada

Stephen23
Stephen23 el 5 de Mayo de 2015
Editada: Stephen23 el 5 de Mayo de 2015
Method One:
>> N = 5;
>> 2*mod(ndgrid(1:N,1:N),2)-1
ans =
1 1 1 1 1
-1 -1 -1 -1 -1
1 1 1 1 1
-1 -1 -1 -1 -1
1 1 1 1 1
Method Two:
>> 2*(ones(N,1)*mod(1:N,2)).'-1
ans =
1 1 1 1 1
-1 -1 -1 -1 -1
1 1 1 1 1
-1 -1 -1 -1 -1
1 1 1 1 1
Method Three:
>> repmat(2*mod(1:N,2).'-1,1,N)
ans =
1 1 1 1 1
-1 -1 -1 -1 -1
1 1 1 1 1
-1 -1 -1 -1 -1
1 1 1 1 1

Más respuestas (2)

Andrei Bobrov
Andrei Bobrov el 5 de Mayo de 2015
-(-1).^(1:5)'*ones(1,5);
  3 comentarios
Offroad Jeep
Offroad Jeep el 5 de Mayo de 2015
Thanks.........
Andrei Bobrov
Andrei Bobrov el 5 de Mayo de 2015
please accept my answer too! :)

Iniciar sesión para comentar.

Categorías

Más información sobre Mathematics 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