필터 지우기
필터 지우기

Info

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

select a row from a matrix and a vector simultanesouly

조회 수: 1 (최근 30일)
Niki
Niki 2011년 8월 30일
마감: MATLAB Answer Bot 2021년 8월 20일
For example we have >> X=rand(100,5); >> Y=rand(100,1); Then I would like to put out the first row of X and the first row of Y simultaneously It is like LOO, but it should be mentioned that if we remove the first row of X we should remove the first row of Y as well, and it should be done for all rows
do you have any idea?

답변 (1개)

Paulo Silva
Paulo Silva 2011년 8월 31일
for r=1:100 %row to remove or whatever you want to do
X=rand(100,5);
Y=rand(100,1);
%show the r row on the workspace
X(r,:)
Y(r,:)
%remove the r row
X(r,:)=[];
Y(r,:)=[];
end

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by