美文网首页
Matlab-colon (:)

Matlab-colon (:)

作者: 六便士少年 | 来源:发表于2015-04-16 01:06 被阅读20次

    colon (:)

    Create vectors, array subscripting, and for loop iterations

    DescriptionThe

    colon is one of the most useful operators in MATLAB. It can create vectors, subscript arrays, and specify for iterations.
    The colon operator uses the following rules to create regularly spaced vectors:

    j:k is the same as [j,j+1,...,k]
    j:k is empty if j > k
    j:i:k is the same as [j,j+i,j+2i, ...,k]
    j:i:k is empty if i > 0 and j > k or if i < 0 and j < k

    where i, j, and k are all scalars.
    Below are the definitions that govern the use of the colon to pick out selected rows, columns, and elements of vectors, matrices, and higher-dimensional arrays:

    • A(:,j) is the jth column of A
    • A(i,:) is the ith row of A
    • A(:,:) is the equivalent two-dimensional array. For matrices this is the same as A
    • A(j:k) is A(j), A(j+1),...,A(k)
    • A(:,j:k) is A(:,j), A(:,j+1),...,A(:,k)
    • A(:,:,k) is the kth page of three-dimensional array A.
    • A(i,j,k,:) is a vector in four-dimensional array A. The vector includes A(i,j,k,1), A(i,j,k,2), A(i,j,k,3), and so on.
    • A(:) is all the elements of A, regarded as a single column. On the left side of an assignment statement, A(:) fills A, preserving its shape from before. In this case, the right side must contain the same number of elements as A.

    相关文章

      网友评论

          本文标题:Matlab-colon (:)

          本文链接:https://www.haomeiwen.com/subject/eumsfttx.html