Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00011
00012
00013
00014 #include "fvar.hpp"
00015
00016 #ifdef __TURBOC__
00017 #pragma hdrstop
00018 #include <iostream.h>
00019 #endif
00020
00021 #ifdef __ZTC__
00022 #include <iostream.hpp>
00023 #endif
00024
00025
00026 #include <stdio.h>
00027 #ifndef __SUN__
00028 #endif
00029 #include <math.h>
00030
00035 dmatrix operator/(const dmatrix& m, const double e)
00036 {
00037 dmatrix tmp;
00038 tmp.allocate(m);
00039 for (int i=m.rowmin();i<=m.rowmax();i++)
00040 {
00041 tmp(i)=m(i)/e;
00042 }
00043 return tmp;
00044 }
00045
00050 dmatrix operator/(const double e, const dmatrix& m)
00051 {
00052 dmatrix tmp;
00053 tmp.allocate(m);
00054 for (int i=m.rowmin();i<=m.rowmax();i++)
00055 {
00056 tmp(i)=e/m(i);
00057 }
00058 return tmp;
00059 }