if i consider i=1:1000, what does ':' mean in x(i,:)
조회 수: 7 (최근 30일)
이전 댓글 표시
In a for loop what does : mean in x(i,:) if i consider i=1:1000??
my coding is:
t=20
for i=1:t
error(i,:)= errornew
end
Please help.
Thank you.
댓글 수: 0
채택된 답변
Torsten
2015년 8월 17일
It means that the first 20 rows of the matrix "error" are set to the vector "errornew".
Best wishes
Torsten.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!