The Daily C++
1.83K subscribers
10 photos
2 files
596 links
The best channel about C++ News!
Every day a lot of news!

Send your project/repo/guide/tutorial to @dailycppbot
Download Telegram
Tags: #conan #whatisit
I was well aware of conan’s existence, but I haven’t used it and I was a bit sceptical after biicode died.
http://szelei.me/conan/
Forwarded from The Daily C++
Send your project/repo/guide/tutorial to @dailycppbot (the bot can't reply to you, and don't send spam)
Merry Christmas from admins
Tags: #math #squares #curve

In this post:
- Fit a curve of degree N to a data set, getting data points 1 at a time.
- Storage Required: 3*N+2 values.
- Update Complexity: roughly 3*N+2 additions and multiplies.
- Finalize Complexity: Inverting a (N+1)x(N+1) matrix and multiplying by a vector to get polynomial coefficients.
- Simple C++ code and HTML5 demo at bottom!

http://blog.demofox.org/2016/12/22/incremental-least-squares-curve-fitting/