如何写入整 Row 进入一个 Cell array

楼主: harristime (瀚宇)   2016-04-24 00:50:36
请参照下面的 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(:)'; <
作者: celestialgod (天)   2016-04-24 01:48:00
为啥feature不用matrix要存cell的话 可以改成 Feature(i*15+j,) =num2cell(Result(:)');少一个:,应该是Feature(i*15+j,:) =

Links booklink

Contact Us: admin [ a t ] ucptt.com