필터 지우기
필터 지우기

how to find 'n' number and split vector in to two ?

조회 수: 3 (최근 30일)
Jeevan Kumar Bodaballa
Jeevan Kumar Bodaballa 2020년 6월 23일
답변: madhan ravi 2020년 6월 23일
Hello I want to find 'N' Number in vectore and split into two vectors.
A = [1 2 3 4 5 6 7 8 9 10 23 55 66 77 88]
for i = 1:length(A)
if A(:,i) <= 20
X = A(:,i)
else
Y = A(:,i)
end
end
But I want
X = [1 2 3 4 5 6 7 8 9 10]
Y = [23 55 66 77 88]

채택된 답변

madhan ravi
madhan ravi 2020년 6월 23일
X = A(A <= 20)
Y = A(A > 20)
You just needed to save the result in each iteration ;)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by