C/C++
linear.asc
Associated article: Linear Algebra with C++ Template Metaprograms
Tags: .NET C/C++
_Linear Algebra with C++ Template Metaprograms_
by Todd Veldhuizen and Kumaraswamy Ponnambalam
Example 1:
(a)
// Four vectors with 1000 elements of double
Vector<double> y(1000), a(1000), b(1000), c(1000)
y = a + b + c;
(b)
for (int i=0; i < 1000; ++i)
y[...


