Create a matrix through replacement, from another matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
stelios loizidis
am 11 Jun. 2020
Kommentiert: stelios loizidis
am 11 Jun. 2020
Hello. I have a matrix A (5X5) and I want to create a matrix B (of the same size as A) and its values come from matrix A. Also, it is allowed to reapeat. That, is the data can be selected, never, once or more times from matrix A and replaced in matrix B. For example:
A=[1 2 3 4 5
6 7 13 11 8
22 34 45 67 78
99 41 80 91 32
60 69 64 71 76]
B=[69 2 6 11 67
1 22 34 8 60
69 2 2 80 91
64 71 76 69 99
7 13 11 60 71]
Your help is important!!!
2 Kommentare
Akzeptierte Antwort
madhan ravi
am 11 Jun. 2020
Bearbeitet: madhan ravi
am 11 Jun. 2020
B = A(randi(numel(A),size(A)))
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping 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!