RANDOM FLIPPING FROM 1 TO -1
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Offroad Jeep
am 24 Mai 2016
Bearbeitet: Walter Roberson
am 25 Mai 2016
Hi to all the users, I have tried a code in which numbers are changed from 1 to -1 turn by turn. But I need some condition.
- All elements are 1
- A random element of matrix is selected and changed from 1 to -1.
- The process goes till all the elements are changed from 1 to -1 randomly.
- Once the change happens it should be fixed. ie once 1 is changed to -1 it should remain fixed.
Hope i have cleared my idea.....
Regards
clc
clear all
format compact
nrows = 3
A = ones(nrows)
E_A = sum(sum(A))
n = numel(A);
for k=1:n
A(k) = -1
E_B = sum(sum(A))
end
0 Kommentare
Akzeptierte Antwort
James Tursa
am 24 Mai 2016
Bearbeitet: James Tursa
am 24 Mai 2016
Make this change:
:
p = randperm(n); % <-- Add this line just before for-loop
for k=1:n
A(p(k)) = -1; % <-- change the index from k to p(k)
:
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!