Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
how to put iterations from a foor loop in a vector
조회 수: 1 (최근 30일)
이전 댓글 표시
What i want to achieve is my own DFT alogrithm. I want to start off by sampling the signal, x(t)=x(n(delta)T). I want to be able to run this in a for loop then take every sample value and place it in a vector Xk=[ ] which will have those sample values. Thanks.
댓글 수: 1
답변 (1개)
Sean de Wolski
2013년 3월 5일
v = zeros(10,1);
for ii = 1:10
v(ii) = rand;
end
댓글 수: 1
Jan
2013년 3월 5일
I would work without the pre-allocation in the 1st line, but this is essential for the performance.
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!