Hello,
I'm working on a labView application and I want to sum the rows of a 2D array. The array gets the data form a INI file (see example)
[22022005]
Mea_0 = 1;2;5;9;12;47;2;25;86;56;89;45;23;12;12;10;9;6;5;3;1;1;2;0;0;0;0
Mea_1 = 2;3;6;10;13;48;3;26;87;57;90;46;24;13;13;11;10;7;6;4;2;2;3;1;1;1;1
Mea_2 = 5;7;6;10;13;48;3;26;77;77;90;46;24;13;13;11;29;7;6;4;2;2;3;1;3;1;1
Mea_3 = 8;12;6;10;13;48;3;26;87;97;113;76;64;33;53;41;36;7;6;4;2;2;3;4;1;1;1
Mea_n = .....
[Sum22022005]
Sum = 16;13;23;.......
The Mea's represents histogram data , I make a undefined quantity of measurements and save this to a file.
After 24h I build a array of all this measuremnt and I want to build the sum of the fields (for example)
Row1 field1 field2 ...
+Row2 field1 field2 ...
+Row3 field1 field2 ...
+Rown field1 field2 ...
------------------------
=sum fileds........
Can anybody help me
Thomas