Create a matrix through replacement, from another matrix

조회 수: 1 (최근 30일)
stelios loizidis
stelios loizidis 2020년 6월 11일
댓글: stelios loizidis 2020년 6월 11일
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
madhan ravi
madhan ravi 2020년 6월 11일
What’s the pattern?
stelios loizidis
stelios loizidis 2020년 6월 11일
There is no pattern. Just randomly select numbers from matrix A and replace them to matrix B.

댓글을 달려면 로그인하십시오.

채택된 답변

madhan ravi
madhan ravi 2020년 6월 11일
편집: madhan ravi 2020년 6월 11일
B = A(randi(numel(A),size(A)))
  댓글 수: 3
madhan ravi
madhan ravi 2020년 6월 11일
It works for both the case.
stelios loizidis
stelios loizidis 2020년 6월 11일
I tried it. It works. Thank for the help!!!!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by