Find average of an array for values > 0
    24 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
find average of array only for values > 0 and print using for loop and for where there is data (ie more than 0 values in the data)
i) sum of values
IF DATA > 0****** --> this is my main issue im stuck with
for i = 1:length(data)
    sum = sum + data(i)
end
fprintf("%.2f\n", sum)
ii) average
if length(data) > 0
    average = sum/ length(data)
end
fprintf("%.3f\n", average)
0 commentaires
Réponses (1)
  stozaki
    
 le 12 Sep 2021
        2 commentaires
  stozaki
    
 le 12 Sep 2021
				If you use for and if statements, you can do the following:
data = [1 2 10 -38 -7 2 8 10 -5 1 0 -5 37]; % example data 
temp = 0; % initialize temp
count = 0; % initialize count
for N = 1:length(data)
    if data(N) > 0
        temp = data(N) + temp;
        count = count + 1;
    else
        % nop
    end
end
average = temp/count
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

