如何编写for循环

时间:2013-10-16 13:19:36

标签: matlab

我已编写代码,代码如下:

r=16;
n=10;
w=[3 5]


R2=n;
R3=floor(r/w(2))*w(2);
R4=floor(r/w(3))*w(3);


[A2,padded]=vec2mat(vec(1:R2),w(1));
[A3,padded]=vec2mat(vec(R2+1:R2+R3),w(2)); 

我需要为A100生成此代码。因此,如果我通过Hand向A100写入,它看起来不会很好。所以我想使用for loop.编写此代码我想使用{{ 1}} for loop部分,我生成A

Matlab专家请您的帮助。

1 个答案:

答案 0 :(得分:4)

你不应该把你的东西放在单独的变量中,而应该放在MATLAB中名为“cell array”的数据结构中。如果值都是标量值,您甚至可以使用“普通”数组,也就是矩阵。

所以为了准备,你做

R=56;
N=51;
W=[3 5 6 8 13 17 25 25 51];

R2=N; %//why that? are you sure?

RR = floor(R./W).*W;
%// So if you need this exception:
RR(1) = N;
%// or not, is up to you.

rows = cumsum(RR./W);

%//Now, whatever vec2mat returns, could be more than a simple scalar, so for AA we use
%//a cell array.

AA = repmat({[]}, 1, length(W));
offset=0;
for x=1:length(W)
    increment=RR(i)
    [AA{x},padded]=vec2mat(vec(offset+1:offset+increment),W(x));
    offset = offset+increment;
end
%%// Your AA values are now as well shifted by 1, so AA{1} is your old A2, and so on.

编辑:

使用矢量化Dan suggests查找RRrow。但我不认为AA创作可以很好地矢量化。

编辑2:

我刚刚将丹的解决方案纳入我的。它可能会为length(W)的大值带来巨大的性能提升。

编辑3:

我的旧问题代码应该让您了解这些概念;您可以尝试自己为新零件实施它们。当你没有成功时,你可以询问究竟什么不起作用。