MATLAB: What is the best algorithm use to predict which locations I have to visit it will has critically cases in near future

prediction algorithm

Hi,
I have many locations in different areas. I like to predicte what is the location will have crticlly case for example, next week or next month ..etc)
Rergards

Best Answer

I think it depends on how consistent is the material usage. If it's reliably linear, like they use up one toner cartridge every 3 months (or whatever), then you can just use polyfit() to predict when the material will be low, and send out the salesman to replenish the material. If the usage is quite random, then maybe you should look at the Weibull distribution.
Related Question