Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
To all
What is the quickest way summing all the data in matrix in mcad 15?
I have a matrix of N columns
I want to sum all the number in the following colums
1&2
3&4
5&6
Etc
There are Nrow
ultimatly the number of columns will be “dynamic” but will always be a multiple of 6
Solved! Go to Solution.
@JXBWk wrote:
To all
What is the quickest way summing all the data in matrix in mcad 15?
I have a matrix of N columns
I want to sum all the number in the following colums
1&2
3&4
5&6
Etc
There are Nrow
ultimatly the number of columns will be “dynamic” but will always be a multiple of 6
Do you mean something like shown below?
It should work for any matrix with an even number of columns. The above is written in Prime 7, but the M15 equivalents should work.
Stuart
@JXBWk wrote:
To all
What is the quickest way summing all the data in matrix in mcad 15?
I have a matrix of N columns
I want to sum all the number in the following colums
1&2
3&4
5&6
Etc
There are Nrow
ultimatly the number of columns will be “dynamic” but will always be a multiple of 6
Do you mean something like shown below?
It should work for any matrix with an even number of columns. The above is written in Prime 7, but the M15 equivalents should work.
Stuart
Slightly different implementation that is ORIGIN independent:
Success!
Luc
Thanks @StuartBruff and @LucMeekes for the suggestions. It works but I realised that there is a slight difference to what I actually needed (I just need to work on a transposed matrix !)