if any a can be index?

2 vues (au cours des 30 derniers jours)
Da'Moon
Da'Moon le 5 Déc 2017
Modifié(e) : Da'Moon le 5 Déc 2017
  1 commentaire
KSSV
KSSV le 5 Déc 2017
What is y?

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 5 Déc 2017
Perhaps this:
VV=8;
v=length(y);
n=0;
for k=1:VV:length(y)
n = n + 1;
if any(y(k:k+8))
A(n)=1;
else
A(n)=0;
end
end
By the way, are you sure you don't want k:(k+7) instead of k:k+8?
  2 commentaires
Da'Moon
Da'Moon le 5 Déc 2017
you are correct!
Da'Moon
Da'Moon le 5 Déc 2017
thank you it seems its working now!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by