User profile: maikel

User info
User name:maikel
Name:Maikel Nadolski
Location:Berlin
Website:http://page.mi.fu-berlin.de/guttula/
Statistical data
Skills:I'm a little skilled in math
History
Joined:
Number of posts:170
Latest posts:

template functions
The concrete problem i see is, that you declare your function to take only const integer. Did you me...

inverse of a matrix
Hi rahulmm, there are several ways of doing this. But the first question is, what kind of represe...

Iterate through STL list
something like [code] std::list<int> intList; for (int i = 0; i < 10; ++i) { intList.push_...

Program about Complex numbers.
I would design it like this [code] template <typename T> class Complex { public: Complex(...

Improving a factory function
What about template specialization? You could slightly improve the performance, because the switch w...