Muchas gracias danilc1007, pero en freemat no me reconoce randint, y sie n vez de randint pongo rand, lo unico que me sale es esta matriz:
1 1 0 0
1 1 0 0
1 1 0 0
1 1 0 0
Siempre....
Y en cuanto a la solucion de Serguma, no me deja usar randi en freemat, tal cual lo pones tu me da este error:
Error: RANLIB Error: low > high in ignuin - ABORT
Asi que me quedo con el round aunque sea solo para probar el programa, asi que tal y como me dices tu:
round(rand(prod(size(A))))
y me sale:
1 1 1 1 0 1 1 1 1 0 1 1 0 1 1 1
1 1 0 1 0 0 1 0 1 0 1 1 1 1 1 1
0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 1
1 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0
0 0 0 0 0 0 1 1 0 0 0 1 1 0 1 0
1 0 1 1 1 1 1 0 1 1 0 1 1 0 1 0
1 0 1 0 0 0 1 1 0 0 1 1 1 0 1 1
1 1 0 0 0 0 0 0 1 1 1 0 0 1 1 1
1 0 0 1 0 1 1 0 0 0 0 0 1 1 0 0
0 0 1 1 0 0 0 1 0 0 0 1 0 0 1 0
1 1 0 1 1 1 1 1 1 1 1 1 1 0 0 0
0 1 1 0 0 1 0 0 1 1 0 0 0 1 0 1
0 0 0 0 1 1 0 1 0 1 1 0 0 1 0 1
0 1 1 0 1 0 0 0 1 1 0 0 1 0 0 0
0 0 0 0 0 1 0 1 0 1 1 0 1 1 0 0
1 1 1 1 1 1 1 0 0 0 1 0 0 1 0 1
y al darle a la function me sale otra vez un bucle que no para, PD: uso freemat
codigo actual:
function ca = cambio(A)
a = 1;
b = 1;
while a==b
a = round(rand(prod(size(A))))
b = round(rand(prod(size(A))))
end
temp1 = A(a);
A(a) = A(b)
A(b) = temp1
ca=A
end