Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00011 #include <df1b2fun.h>
00012
00017 df1b2vector operator + (const df1b2variable& _x,const dvector& _v)
00018 {
00019 ADUNCONST(dvector,v)
00020 ADUNCONST(df1b2variable,x)
00021
00022 int mmin=v.indexmin();
00023 int mmax=v.indexmax();
00024 df1b2vector tmp;
00025 tmp.noallocate(mmin,mmax);
00026 for (int i=mmin;i<=mmax;i++) tmp(i)=x+v(i);
00027 return tmp;
00028 }
00029
00034 df1b2vector operator - (const df1b2vector& _v,const df1b2variable& _x)
00035 {
00036 ADUNCONST(df1b2vector,v)
00037 ADUNCONST(df1b2variable,x)
00038
00039 int mmin=v.indexmin();
00040 int mmax=v.indexmax();
00041 df1b2vector tmp;
00042 tmp.noallocate(mmin,mmax);
00043 for (int i=mmin;i<=mmax;i++) tmp(i)=v(i)-x;
00044 return tmp;
00045 }
00046
00051 df1b2vector operator - (const df1b2variable& _x,const df1b2vector& _v)
00052 {
00053 ADUNCONST(df1b2vector,v)
00054 ADUNCONST(df1b2variable,x)
00055
00056 int mmin=v.indexmin();
00057 int mmax=v.indexmax();
00058 df1b2vector tmp;
00059 tmp.noallocate(mmin,mmax);
00060 for (int i=mmin;i<=mmax;i++) tmp(i)=x-v(i);
00061 return tmp;
00062 }
00063
00068 df1b2vector operator - (const df1b2variable& _x,const dvector& _v)
00069 {
00070 ADUNCONST(dvector,v)
00071 ADUNCONST(df1b2variable,x)
00072
00073 int mmin=v.indexmin();
00074 int mmax=v.indexmax();
00075 df1b2vector tmp;
00076 tmp.noallocate(mmin,mmax);
00077 for (int i=mmin;i<=mmax;i++) tmp(i)=x-v(i);
00078 return tmp;
00079 }
00080
00085 df1b2vector operator - (const dvector& _v,const df1b2variable& _x)
00086 {
00087 ADUNCONST(dvector,v)
00088 ADUNCONST(df1b2variable,x)
00089
00090 int mmin=v.indexmin();
00091 int mmax=v.indexmax();
00092 df1b2vector tmp;
00093 tmp.noallocate(mmin,mmax);
00094 for (int i=mmin;i<=mmax;i++) tmp(i)=v(i)-x;
00095 return tmp;
00096 }
00097
00102 df1b2vector operator + (const dvector& _v,const df1b2variable& _x)
00103 {
00104 ADUNCONST(dvector,v)
00105 ADUNCONST(df1b2variable,x)
00106
00107 int mmin=v.indexmin();
00108 int mmax=v.indexmax();
00109 df1b2vector tmp;
00110 tmp.noallocate(mmin,mmax);
00111 for (int i=mmin;i<=mmax;i++) tmp(i)=v(i)+x;
00112 return tmp;
00113 }
00114
00119 df1b2vector operator * (const dvector& _v,const df1b2variable& _x)
00120 {
00121 ADUNCONST(dvector,v)
00122 ADUNCONST(df1b2variable,x)
00123
00124 int mmin=v.indexmin();
00125 int mmax=v.indexmax();
00126 df1b2vector tmp;
00127 tmp.noallocate(mmin,mmax);
00128 for (int i=mmin;i<=mmax;i++) tmp(i)=v(i)*x;
00129 return tmp;
00130 }