Monday, August 29, 2016

Problems involving polynomials

While attempting problems with polynomials, properties of polynomials will be useful. Which property I have to use must be my choice. Well behaved differentiation property was helpful in transforming the basis. Clarification in proof related to monomials as basis for polynomial space

Saturday, August 27, 2016

How to read a C pointer declaration

It is easier to read a C pointer declaration backward:
const float *srio;
1. const float *srio; srio is a variable.
2. const float *srio; srio is a pointer variable.
3. const float *srio; srio is a pointer variable to a float.
4. const float *srio; srio is a pointer variable to a constant float.