How to get data by using index numbers and store in new array?

1 view (last 30 days)
I have an array with some zeros and some positive numbers.
I already have a code which provide me index numbers of positive data location.
idx =
141 212
370 426
608 642
843 912
1154 1177
1481 1496
1732 1779
2128 2161
2343 2377
2578 2649
2838 2908
Index number
141 to 212
has some positive valued which sum is equal to 50.
What I want to do is to sum up data between each index number calculated early and store it in a new array.
Expected result should be like
Result =
50
90
1000
600
45
658
55
821
22
444
845

Accepted Answer

Shahab Khan
Shahab Khan on 4 Dec 2018
Actually I manage to figure it out.
Here is solution, thought may be helpful for some others.
% idx is an array having index numbers
Result = zeros(length(idx),1); % define size of result
for i= 1:length(idx)
data = EnergyB((idx(i,1)):idx(i,2));
Result(k) = sum(data/3.6/1000000) % use 3.6/1000000 for converting joules to kWh

More Answers (0)

Categories

Find more on Data Type Identification in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!