Not able to add 2d array to 3d array

3 ビュー (過去 30 日間)
Nagesh A P
Nagesh A P 2018 年 6 月 27 日
コメント済み: Ameer Hamza 2018 年 6 月 27 日
I'm trying to add the 2d array cycle to a 3d array cycle_mat. i is a variable that changes after each loop iteration. I'm getting the following error:
Subscripted assignment dimension mismatch.
Error in The_Code (line 622) cycle_mat(:,:,i)=cycle;
if true
cycle_mat=zeros(50000,4,100);
loop starts
cycle_mat(:,:,i)=cycle;
loop ends
end
  5 件のコメント
Nagesh A P
Nagesh A P 2018 年 6 月 27 日
Okay. I thought matlab would take care of that, like it does for 2d arrays when u preallocates a matrix .So here I have to change the dimesnsion of that 3d matrix for each loop iteration??
Ameer Hamza
Ameer Hamza 2018 年 6 月 27 日
MATLAB does not do such thing even for a 2D matrix.
A = [1 2 3; 4 5 6; 7 8 9];
is a 3x3 matrix. Now if I try
A(2, :) = [1 2];
it will again throw an error.
The dimension of left and right side of an assignment must be same. Also In a MATLAB matrix, the length of all rows must be same. Similarly for columns and pages. If your matrix size is continually changing along the third dimension then consider using cell arrays.

サインインしてコメントする。

回答 (1 件)

Ameer Hamza
Ameer Hamza 2018 年 6 月 27 日
The error is probably caused because the dimension of cycle are not [50000 x 4]. Also, if cycle is has a constant value then you don't need to use for loop to assign to 3rd dimension of a matrix. MATLAB support auto array expansion feature. So for R201bb and later, the following will work
cycle_mat(:,:,i_vector) = cycle_mat(:,:,i_vector) + cycle;
i_vector is a vector of all indexes to which you want to add cycle.
For R2016a and earlier
cycle_mat(:,:,i_vector) = bsxfun(@plus, cycle_mat(:,:,i_vector), cycle);
  1 件のコメント
Nagesh A P
Nagesh A P 2018 年 6 月 27 日
Hi ameer.Cycle is not a constant value. It changes in each loop iteration.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by