Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Reading in the values from excel

1 vue (au cours des 30 derniers jours)
soyfrijole
soyfrijole le 5 Déc 2017
Clôturé : MATLAB Answer Bot le 20 Août 2021
I have made a program the reads in values from an excel table and in order to find the average of n number of values in a column. The problem that I am having is I only know how to find the average of all the values in a column, not just the first 10 values in the column. If someone could help I'd appreciate it.
if true
if y == 0.2
column = 3;
x = mean(data_in(:,3));
s = std(data_in(:,3));
end

Réponses (1)

KL
KL le 5 Déc 2017
replace
x = mean(data_in(:,3));
with
x = mean(data_in(1:10,3));
1:10 could be any number indices within its limits
  2 commentaires
soyfrijole
soyfrijole le 5 Déc 2017
Oh thank you. I was trying to do (n,3) and kept getting an error.
KL
KL le 6 Déc 2017
Modifié(e) : KL le 6 Déc 2017
n should be a vector, like in my example,
n = 1:10
if they are not continuous then,
n = [1 3 8 9 15 ...]

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by