Matrix.h File Reference


Detailed Description

The Zenautics Matrix Class.

Author:
Glenn D. MacGougan (GDM)
Date:
2007-12-21
Version:
1.11
LICENSE INFORMATION
Copyright (c) 2007, Glenn D. MacGougan, Zenautics Technologies Inc.

Redistribution pertains only to the following files and their contents.

Redistribution and use in source and binary forms, with or without modification, of the specified files is permitted provided the following conditions are met:

THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

NOTES:
This code was developed using rigourous unit testing for every function and operation. Despite any rigorous development process, bugs are inevitable. Please report bugs and suggested fixes to glenn@zenautics.com.

Definition in file Matrix.h.

#include <stdio.h>
#include <complex>
#include <string>
#include "cmatrix.h"

Go to the source code of this file.

Namespaces

namespace  Zenautics

Data Structures

class  Zenautics::MatrixException
 A class for exceptions thrown by the Matrix class. More...
class  Zenautics::Matrix
 The matrix/vector class. Both real and complex data are inherently supported. One and two dimensional data. More...
class  Zenautics::Matrix::Element
 This is a nested class that is an element of the matrix. i.e. Matrix M; M(i,j) is the element. It is used for operator(,) access by the Matrix. More...
class  Zenautics::Matrix::RealOnlyAccess
 A nested class for access only to the real part of the matrix. It is used for operator[] access by the Matrix. More...