Hi gurus,

I found the (simple) solution:

One has to foreward declare the operator-Funktion, before it can be used as a friend in the class declarations. The foreward declaration looks like:

template<class T> Vektor<T> operator*(const Matr<T>&, const Vektor<T>&);

Then it works!

Bye,
Physicus.