2

I need a way to find pattern in list of values. In particular every second I get a value in a range (ex. 1-3), and I want to find recurring pattern from this value list.

If i plot this values into an x,y system i'd get something like a Nyquist–Shannon sampling. It could be very interesting to work on this.

I could also plot these values and work on visual pattern recognition (neural networks...).

input:

instant  value


1          1
2          2
3          3
4          1
5          2
6          3
7          1

output->1,2,3

What could be the best way to proceed ?

dbugger
  • 15,868
  • 9
  • 31
  • 33
RamsesXVII
  • 295
  • 2
  • 11
  • 1
    If this is not as trivial as you have listed in your example then I would think of feeding the sampled data to an FFT algorithm and analyze the returned frequency components. – Redu Jan 11 '17 at 20:26
  • Could you be more specific ? – RamsesXVII Jan 12 '17 at 08:00

0 Answers0