C/C++
cppfort.txt
Associated article: Scientific Computing: C++ Versus Fortran
Tags: C/C++
Published source code accompanying the article by Todd Veldhuizen in which he describes how the performance of C++ programs is outpacing Fortran counterparts in scientific and numeric computing.
Scientific Computing: C++ Versus Fortran by Todd Veldhuizen Listing One Matrix<float> A(3,3); Vector<float> b(3), c(3); // ... c = product(A,b); Listing Two TinyMatrix<float,3,3> A; TinyVector<float,3> b, c; c = product(...


