How to make a column vector of 2 distinct numbers
조회 수: 2 (최근 30일)
이전 댓글 표시
How can I make a 400x1 column vector in the following format..
first 100 rows = all 1's
101st to 400th row = all 2's
I am a matlab newbie so any help to get me started will be greatly appreciated.
Thanks
댓글 수: 0
채택된 답변
Konstantinos Sofos
2015년 3월 19일
편집: Konstantinos Sofos
2015년 3월 19일
Many possible solutions
V = [ones(100,1);2*ones(300,1)];
or
V = [repmat(1,100,1);repmat(2,300,1)];
or
V = ones(400,1); V(101:end)=2;
or
V(1:100,1)=1;V(101:400,1)=2;
댓글 수: 0
추가 답변 (3개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!