请参照下面的 code
我想把 Result 给写入一个 Cell array "Feature",
Result 会是一个 1 x 6656 的向量, 然后在我的循环内
总共会有 150个 Result.
请问要如何将这150 Result 按顺序写入 一个 150 * 6656的 Cell array?
###########################################################
load data;
for i = 1:10
for j = 1:15
Result = hist(double(A_Set1{i,j})', 0:5:255)'./length(B_Set1{i,j});
Feature = Result(:)'; <