Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to set some column or row in matrix to another random matrix?

조회 수: 1 (최근 30일)
Firas Al-Kharabsheh
Firas Al-Kharabsheh 2016년 4월 16일
마감: MATLAB Answer Bot 2021년 8월 20일
if i have (n,m) Binary matrix A like this
A = [ 0 0 0 0 1
1 0 1 1 1
0 0 0 0 0
0 0 0 0 1 ]
and i want to generate a binary random matrix and make a a rows and columns that have ones in A
to be in the same position in the random matrix like that
before the function S_rand = [ 1 0 1 0 0
1 1 0 1 0
0 1 0 1 1
0 0 1 0 1 ]
after the function S = [ 1 0 1 0 1
1 0 1 1 1
0 1 0 1 0
0 0 1 0 1 ]
where in S the second row and last column is the same in A

답변 (1개)

Kuifeng
Kuifeng 2016년 4월 16일
S_rand(selected_row, :) = A(selected_row, :);
S_rand(:, selected_col) = A(:, selected_col);

Community Treasure Hunt

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

Start Hunting!

Translated by