if any a can be index?

 Risposta accettata

Image Analyst
Image Analyst il 5 Dic 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 Commenti

Da'Moon
Da'Moon il 5 Dic 2017
you are correct!
Da'Moon
Da'Moon il 5 Dic 2017
thank you it seems its working now!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by