Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
For-loop in Matlab
조회 수: 2 (최근 30일)
이전 댓글 표시
Hei!
I have the following for-loop:
for c=(1:10)
x=sind(c)
end
disp(x)
How can I get all values of x as a row vector? Matlab gives me values of x separately from each other. I want to combine them all together.
Sergey
답변 (1개)
Nobel Mondal
2015년 5월 16일
편집: Nobel Mondal
2015년 5월 16일
You don't even need a for loop
c = 1:10;
x = sind(c);
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!