/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2010 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /** * \file linearalgebra.dox * * Created on: Oct 31, 2011 * Author: heber */ /** * \page linearalgebra Linear Algebra submodule * * The Linear Algebra submodule wraps GSL functionality into C++ classes. It * has its own documentation residing in the subfolder \b LinearAlgebra. * * Most important are the Vector and Matrix classes including operators to * allow for easy algebra, e.g. * \code * Vector test(1,1,1); * Matrix m(3,3); * m.setIdentity(); * std::cout << "Vector " << test << " times the identity is " << test*m M << std::endl; * \endcode * * * \date 2011-10-31 * */