A cycle for creating and working with zones

1 vue (au cours des 30 derniers jours)
Lev Mihailov
Lev Mihailov le 3 Sep 2019
Commenté : Lev Mihailov le 3 Sep 2019
Hello! I have a long vector line 1x10026, I need to divide it into zones (100 values ​​in each), look at them and do operations with them, and then again deplete it into a single vector line, help me how to do this
Data % my data is in the form of a row vector
for ind=1:100:n % n the length of this string
TF = isoutlier(Data(ind));
TF{i}=TF;
end
I tried this option, but does not consider the value.
1) How can I make these zones with 100 values ​​and what would the tail be considered (those are my 26 values) ???
2) How do I then impoverish them?
  3 commentaires
Lev Mihailov
Lev Mihailov le 3 Sep 2019
B = reshape(A,[100,100])
To RESHAPE the number of elements must not change.
is there such an error, or is it possible to make the system iterate over 10 values ​​and write them to the same array?
Lev Mihailov
Lev Mihailov le 3 Sep 2019
for ind=1:100 % n the length of this string
TF(ind) = isoutlier(Data(ind))
I try to do so, but only 100 values ​​come out

Connectez-vous pour commenter.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 3 Sep 2019
n = numel(Data);
ii = ceil((1:n)'/100);
TF = accumarray(ii,Data(:),[],@(x){isoutlier(x)});
  1 commentaire
Lev Mihailov
Lev Mihailov le 3 Sep 2019
Thank you, perfect option.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by