images(:,((200*(i-1)+1):200*i))= label_orig(:,(1:200));
时间: 2023-10-10 21:15:22 浏览: 56
This statement is assigning a subset of values from the matrix `label_orig` to a subset of values in the matrix `images`.
The subset of values being assigned from `label_orig` is all rows and columns 1-200, and this subset is being assigned to a specific subset of columns in `images`, which is determined by the value of `i`.
More specifically, the columns being assigned to in `images` are determined by the expression `(200*(i-1)+1):200*i`. For example, if `i` is 1, then the columns being assigned to are 1-200, if `i` is 2, then the columns being assigned to are 201-400, and so on.
So, overall, this statement is copying a portion of `label_orig` and pasting it into a specific subset of columns in `images`, based on the current value of `i`.
阅读全文