私はデータを持っています:
data =
{1x6 cell} {1x6 cell}
data{2:end} が行であるかどうかを知りたいので、次を使用しました。
stop = 0;
for (k=2:length(data))
if isrow(data{k})
stop = 1;
end
end
ただし、関数「isrow」はタイプ「cell」の引数に対しては機能しません。
私はそれについて読みました、そして関数があります:「cell2struct」:
structArray = cell2struct(cellArray, fields, dim);
しかし、この関数には「fields」と「dim」を指定する必要があるため、それを使用できるとは思いません。