Git Product home page Git Product logo

Comments (5)

NuclearPhoenixx avatar NuclearPhoenixx commented on June 29, 2024 1

Do you mean you want multiple moving medians at the same time for different sensors? That's easy, just use a different instance for every sensor:

RunningMedian <name> = RunningMedian(5);

You only need to adjust <name> like this:

RunningMedian a = RunningMedian(5);
RunningMedian b = RunningMedian(5);
RunningMedian c = RunningMedian(5);

And then go from there. Hope that helps!

from runningmedian.

RobTillaart avatar RobTillaart commented on June 29, 2024 1

You can even create an array of RunningMedian objects.

See the example RunningMedian_array.ino

https://github.com/RobTillaart/RunningMedian/blob/master/examples/RunningMedian_array/RunningMedian_array.ino

from runningmedian.

NuclearPhoenixx avatar NuclearPhoenixx commented on June 29, 2024 1

Well, yes it's initializing 3 different running medians with sample size of 5 each. What you do with a, b and c is 100% up to you. You can put all the info of sensor 1 into a, 2 into b and so on and you get three different medians for each sensor.

from runningmedian.

christianmerges avatar christianmerges commented on June 29, 2024

RunningMedian a = RunningMedian(5);
RunningMedian b = RunningMedian(5);
RunningMedian c = RunningMedian(5);

so this is kinda initializing for the sensors a , b and c with a sample size of 5 each?

from runningmedian.

RobTillaart avatar RobTillaart commented on June 29, 2024

@christianmerges
If this solves your issue, you may close it

from runningmedian.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.