Effacer les filtres
Effacer les filtres

Mean between an interval

2 vues (au cours des 30 derniers jours)
FG
FG le 8 Oct 2020
Commenté : FG le 8 Oct 2020
I want to calculate the mean between a time interval that depends on a variable like P ;
F=[1 10 2 4 6 8];
for q=1:length(F);
P=F(q);
Average=mean(M3(90000-P*0.2*1732:90000));
'' Integer operands are required for colon operator when used as index'' warning is come.. What is the problem here ?
  1 commentaire
FG
FG le 8 Oct 2020
and how to solve it ?

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 8 Oct 2020
idx = round(90000-P*0.2*1732:90000) ;
Average=mean(M3(idx));
Your indices are not integers.....you got some fractions also.....so use round.

Plus de réponses (1)

madhan ravi
madhan ravi le 8 Oct 2020
x = 1:5;
x(.2) % error
x(2) % no error , index can only be integers not decimals
I suggest you to do MATLAB Onramp course.
  1 commentaire
FG
FG le 8 Oct 2020
OK, I will Madhan..

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by