Limiting the number of rows of a vector

답변 (2개)

Wayne King
Wayne King 2013년 12월 11일
편집: Wayne King 2013년 12월 11일

0 개 추천

What size is tC now?
tC = randn(100,1);
tC = tC(1:4,1); %or tC = tC(1:4);
or
idx = 20;
tC = randn(100,1);
tC = tC(idx:idx+3);
Or are you asking how you keep a vector from being filled beyond 4 rows.
Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 11일
편집: Azzi Abdelmalek 2013년 12월 11일

0 개 추천

Your question is not clear. If you have a vector
v=[2 3 4 5 6 10]
This vector contains 6 element, you can extract the first four element
out=v(1:4); %but v still contains 6 element,
Or remove the others element of v
v(5:end)=[]
Maybe you should explain what you mean by limitation

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

질문:

2013년 12월 11일

편집:

2013년 12월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by