#include <LinAlg/VecMat.h>
#include <LinAlg/LinAlg.h>
Go to the source code of this file.
Functions | |
| bool | operator== (const Vector &v1, const Vector &v2) |
| bool | operator!= (const Vector &v1, const Vector &v2) |
| bool | operator== (const Matrix &m1, const Matrix &m2) |
| bool | operator!= (const Matrix &m1, const Matrix &m2) |
| Vector | operator+ (const Vector &v1, const Vector &v2) |
| Vector | operator- (const Vector &v1, const Vector &v2) |
| Vector & | operator+= (Vector &v1, const Vector &v2) |
| Vector & | operator-= (Vector &v1, const Vector &v2) |
| Matrix | operator+ (const Matrix &m1, const Matrix &m2) |
| Matrix | operator- (const Matrix &m1, const Matrix &m2) |
| Matrix & | operator+= (Matrix &m1, const Matrix &m2) |
| Matrix & | operator-= (Matrix &m1, const Matrix &m2) |
| Vector | operator* (double s, const Vector &v) |
| Matrix | operator* (double s, const Matrix &m) |
| Vector & | operator*= (Vector &v, double s) |
| Matrix & | operator*= (Matrix &m, double s) |
| Vector | operator* (const Matrix &m, const Vector &v) |
| Vector | operator* (const Vector &v, const Matrix &m) |
| Matrix | operator* (const Matrix &m1, const Matrix &m2) |
| Matrix & | operator*= (Matrix &m1, const Matrix &m2) |
| double | operator* (const Vector &v1, const Vector &v2) |
| Matrix | operator% (const Vector &v1, const Vector &v2) |
| Matrix | powerseries (const Matrix &m, const double *coeff, int ncoeff, double acc) |
| Matrix | exp (const Matrix &m) |
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Definition in file VecMat.cpp.
Definition at line 347 of file VecMat.cpp.
Definition at line 337 of file VecMat.cpp.
Definition at line 528 of file VecMat.cpp.
Definition at line 518 of file VecMat.cpp.
Definition at line 490 of file VecMat.cpp.
Definition at line 475 of file VecMat.cpp.
Definition at line 460 of file VecMat.cpp.
Definition at line 433 of file VecMat.cpp.
Definition at line 425 of file VecMat.cpp.
Definition at line 509 of file VecMat.cpp.
Definition at line 449 of file VecMat.cpp.
Definition at line 442 of file VecMat.cpp.
Definition at line 387 of file VecMat.cpp.
Definition at line 353 of file VecMat.cpp.
Definition at line 401 of file VecMat.cpp.
Definition at line 367 of file VecMat.cpp.
Definition at line 394 of file VecMat.cpp.
Definition at line 360 of file VecMat.cpp.
Definition at line 412 of file VecMat.cpp.
Definition at line 377 of file VecMat.cpp.
Definition at line 342 of file VecMat.cpp.
Definition at line 332 of file VecMat.cpp.
Definition at line 539 of file VecMat.cpp.
References Matrix::isSquare(), and Matrix::unitmatrix().
Referenced by exp().