1

我正在尝试像使用矩阵一样执行此操作:

>> line_params{1,:} = {numberPatterns{i}, lw, iw};
The right hand side of this assignment has too few values to satisfy the left hand side.

但上面出现错误。

类型如下:

>> class(line_params)
ans =
cell

>> size(line_params)
ans =
    21     3

>> a={numberPatterns{i}, lw, iw};

>> class(a)
ans =
cell

>> size(a)
ans =
     1     3
4

1 回答 1

3

改变

line_params{1,:} = {numberPatterns{i}, lw, iw}

进入

line_params(1,:) = {numberPatterns{i}, lw, iw}

(正常括号)。

如果使用花括号 ( {}),则引用单个元素。那是,

line_params{1,:}

line_params将在其第一行的单元格中返回以逗号分隔的元素列表。您不能将元胞数组(单个项目)分配给以逗号分隔的列表(多个项目)。

如果使用括号 ( ()),则引用单元格条目,即,将返回一个单元格数组。您可以将一个元胞数组(单个项目)分配给另一个元胞数组(单个项目)——当然前提是它们具有相同的尺寸。

于 2013-07-02T11:45:42.923 回答