【发布时间】:2013-07-02 11:29:27
【问题描述】:
我正在尝试使用矩阵来做到这一点:
>> 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
【问题讨论】:
标签: matlab row variable-assignment cell-array