Sum of N matrices

13 views (last 30 days)
Pedro Guevara
Pedro Guevara on 28 Jul 2018
Edited: Pedro Guevara on 30 Jul 2018
The reason for this new message was to request a new favor.
Is there a code or function in matlab that allows me to add an undefined number (N) of matrices, which I already have a program? As an example I put the following situation to be understood better:
Aux = Mat (1) + Mat (2) + Mat (3) + .... + Mat (n)
I thank you for your attention and I hope you can help me with my predicament.
  8 Comments
Pedro Guevara
Pedro Guevara on 28 Jul 2018
OK, I will try to make my code implementing indexing. Could you ask for help if you need it? I appreciate your attention.
Stephen23
Stephen23 on 29 Jul 2018
Edited: Stephen23 on 29 Jul 2018
@Pedro Guevara: the approach using eval is specifically advised against by all experienced MATLAB users and by the MATLAB documentation, which has a whole page explaining why to avoid doing this. It states "A frequent use of the eval function is to create sets of variables such as A1, A2, ..., An, but this approach does not the array processing power of MATLAB and is not recommended. The preferred method is to store related data in a single array."
You have already already wasted more than one day trying to work with this inefficiently designed code, in contrast per isakson gave a much better solution in just a few seconds, which is simpler, neater, more efficient, less buggy, and easier to work with. This is one reason why you should rewrite your code: it will save you time! Do you see the pattern here? If you continue to design your code like this, then you will continue to fight your code for no real benefit. Or you could use arrays and indexing, which is what the MATLAB documentation recommends, and make developing, debugging, and running your code much faster.

Sign in to comment.

Accepted Answer

per isakson
per isakson on 29 Jul 2018
Edited: per isakson on 29 Jul 2018
I've modified the example of my comment.
n = 12;
sz = [3,3];
MKG = nan( sz(1),sz(2), n );
for ix = 1 : n
MKG(:,:,ix) = ones(sz); % inv(M_Trans)*M_Kele*M_Trans;
end
sum( MKG, 3 )
outputs
ans =
12 12 12
12 12 12
12 12 12
>>
  1 Comment
Pedro Guevara
Pedro Guevara on 30 Jul 2018
Edited: Pedro Guevara on 30 Jul 2018
I think I love you. XD I am trying to understand your code by making it run step by step and apparently, with some modifications, you can help me with the purpose of my work. Thank you very much.

Sign in to comment.

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!