1

我正在 matlab 中创建一个多维数组,它具有三个参数、数字、宽度和高度

A = randn(number,width,height)

我的问题是数字是动态变量,当它在文本文件中找到对象时会增加。我应该如何使数字变量动态化,

我试过这个,但没有奏效

A = randn(:,width,height)
4

2 回答 2

3
i = 0;
when (object in text file)
i = i+1;
A(i,:,:) = data;
end

数据大小 -width x height

于 2013-02-08T10:14:30.817 回答
1

首先计算数字,然后相应地分配矩阵。

i = 0;
when (object in text file)
i = i+1;
end

A = randn(i,width,height);
于 2013-02-08T10:44:42.217 回答