0

Last beginner question of the day...Working in matlab. Suppose one has matrices A1,...,An. How can one call do something to the Ai-th matrix on the i-th iteration of a loop? Actually I would like to concatenate all the matrices except the Ai-th one, but I can probably figure that out.

4

1 に答える 1

0

私の解決策は、次のことを行うことです。

上記のように行列を作成する代わりに、行列の配列を作成します。

i = 1:nの場合

A {i} = nrows:ncolumnsの行列;

終わり

次に、明白な方法でマトリックスを呼び出します。

于 2013-02-17T23:42:32.597 に答える