Help with Array Induces (left and right side are incompatible)

The following code: ...
Gets me the error
Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.
Error in Title_here (line 40)
k(j)=B(1,:);
If I need the code to save each loop of n results to later make an histogram of all the results of said loop m times. then how should I do it so it works?

 Accepted Answer

k = cell(1); % before loop
k{i}=B(1,:) %change this

1 Comment

It is good practice to preallocate the cell array to the correct size before the loop.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!