Cell array in a loop

조회 수: 1 (최근 30일)
gsourop
gsourop 2016년 11월 9일
댓글: Mostafa 2016년 11월 13일
Hi everyone,
I have created a cell array of dimensions 1x10, named A. Each element contains a 100x5 matrix. Hence, I got 10 matrices 100x5. However, I want to put every matrix of the cell array into a loop. If Bis a 100x5 matrix, the loop should look like:
for t=1:100;
j=1:5;
x=B(t,j)-A(t,j)
end;
end;
At the end x should deliver a 1x10 cell array that will contain 10 elements of matrices 100x5.
I would appreciate any help. Thank you in advance!

답변 (1개)

Mostafa
Mostafa 2016년 11월 9일
편집: Mostafa 2016년 11월 9일
% B is already defined, a matrix of doubles
% A is already defined, a cell array of matrices
% B and the matrices in A have the same size
x = cellfun(@(X) B - X, A, 'UniformOutput', 0);
  댓글 수: 6
Guillaume
Guillaume 2016년 11월 10일
While preallocation is indeed advisable, my main reason for creating x beforehand was actually to demonstrate that cellfun creates an output the same shape as the input. Without that preallocation, the output is a row vector.
The problem with length is that you open yourself to bugs if in the future the input changes from vector to multidimensional. The above is a perfect example: if the input is a matrix instead of a vector, your loop will only process the first X elements of the ND cell array, where X is the size of the largest dimension.
My version with numel works with any shape and any number of dimensions.
For that reason, I never use length. If I want to operate over all the elements of the inputs (regardless of shape), I use numel. If I want to operate over a particular dimension, I use size with the dimension specified.
Mostafa
Mostafa 2016년 11월 13일
I'm not arguing with your point, I'm saying that it's a personal preference in case of 1-D arrays (which was the case in the fore mentioned example). In my codes, whenever I see length, I immediately understand that I'm dealing with an array - not a matrix or an input of unspecified size.
I totally agree that the general form is to use numel, or even better: cellfun

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by