Tags: #cpp17 #feature #lambdas
https://www.reddit.com/r/cpp/comments/5irdg1/a_nice_c17_feature_that_is_being_overlooked/
https://www.reddit.com/r/cpp/comments/5irdg1/a_nice_c17_feature_that_is_being_overlooked/
reddit
A nice C++17 feature that is being overlooked: familiar... • /r/cpp
I love lambdas! <3 Missing from many C++17 feature lists is a small (but awesome!) change to lambdas called [familiar template syntax for generic...
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/
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/
Source Code Tales
Conan is not a barbarian
This is my programming-related blog
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)
Tags: #algorithm #psquare
It turns out the discrepancy was due to a typo in the original paper and not in the Boost.Accumulators implementation as I had originally suspected.
https://www.nu42.com/2016/12/p-square-boost-accumulators-fine.html
It turns out the discrepancy was due to a typo in the original paper and not in the Boost.Accumulators implementation as I had originally suspected.
https://www.nu42.com/2016/12/p-square-boost-accumulators-fine.html
ν42
A discrepancy between P-square algorithm implementation in Boost.Accumulators and the original paper
In my previous post, I noticed a discrepancy between the output of the Boost.Accumulators implementation of the P-square algorithm and output presented in the original paper. Further investigation revealed that the discrepancy was due to a typon in the original…
Tags: #christmas #humor
http://www.commitstrip.com/en/2016/12/25/meanwhile-on-christmas-day/
Merry Christmas!!
http://www.commitstrip.com/en/2016/12/25/meanwhile-on-christmas-day/
Merry Christmas!!
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/
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/
The blog at the bottom of the sea
Incremental Least Squares Curve Fitting
This Post In Short: 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 Compl…
Tags: #quantifiers #metaprogramming #concepts
https://ngathanasiou.wordpress.com/2016/12/18/quantifiers-metaprogramming-and-concepts/
https://ngathanasiou.wordpress.com/2016/12/18/quantifiers-metaprogramming-and-concepts/
CODEine
Quantifiers, metaprogramming and concepts
1. Intro Quantification expresses the extent to which a predicate is true over a set of elements. Two forms are the most common: Universal $latex \forall$ Existential $latex \exists$ To define the…
Tags: #memory #usage #stl
The C++ standard doesn’t dictate exact implementation details for standard library classes, so it’s unsurprising that details of memory usage are missing from most references.
http://info.prelert.com/blog/stl-container-memory-usage
The C++ standard doesn’t dictate exact implementation details for standard library classes, so it’s unsurprising that details of memory usage are missing from most references.
http://info.prelert.com/blog/stl-container-memory-usage
Prelert
STL Container Memory Usage when Developing with C++
When writing C++ code for many platforms the STL container memory usage can vary between implementations (Microsoft, GNU, etc). Make the right tradeoffs.
Tags: #cpp17 #best
http://www.levelofindirection.com/journal/2016/12/28/c17-why-its-better-than-you-might-think.html
http://www.levelofindirection.com/journal/2016/12/28/c17-why-its-better-than-you-might-think.html
Levelofindirection
C++17 - Why it's better than you might think : Level of Indirection
From Mark Isaacson's Meeting C++ talk, 'Exploring C++ and beyond' I was recently interviewed for CppCast and one the news items that came up was a trip report from a recent C++ standards meeting (Issaquah, Nov 2016).