what is the meaning of? K*(i-1):end
조회 수: 2 (최근 30일)
이전 댓글 표시
i have a function: c_t(i,1+K*(i-1):end)=..... i don't undestrand the meaning of K*(i-1):end
댓글 수: 0
답변 (2개)
Youssef Khmou
2014년 12월 30일
c_t(i,1+K*(i-1):end) means selecting elements identified by 1+K(i-1) to end from matrix c_t in the row i, generally X(a:b) picks elements of positions a,a+1,a+2,...b.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Signal Generation and Preprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!