1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
//$$newmatrm.cpp rectangular matrix operations
// Copyright (C) 1991,2,3,4: R B Davies
#include "newmat.h"
#include "newmatrm.h"
#ifdef use_namespace
namespace NEWMAT {
#endif
#ifdef DO_REPORT
#define REPORT { static ExeCounter ExeCount(__LINE__,12); ++ExeCount; }
#else
#define REPORT {}
#endif
// operations on rectangular matrices
void RectMatrixRow::Reset (const Matrix& M, int row, int skip, int length)
{
REPORT
RectMatrixRowCol::Reset
( M.Store()+row*M.Ncols()+skip, length, 1, M.Ncols() );
}
void RectMatrixRow::Reset (const Matrix& M, int row)
{
REPORT
RectMatrixRowCol::Reset( M.Store()+row*M.Ncols(), M.Ncols(), 1, M.Ncols() );
}
void RectMatrixCol::Reset (const Matrix& M, int skip, int col, int length)
{
REPORT
RectMatrixRowCol::Reset
( M.Store()+col+skip*M.Ncols(), length, M.Ncols(), 1 );
}
void RectMatrixCol::Reset (const Matrix& M, int col)
{
REPORT
RectMatrixRowCol::Reset( M.Store()+col, M.Nrows(), M.Ncols(), 1 );
}
Real RectMatrixRowCol::SumSquare() const
{
REPORT
long_Real sum = 0.0; int i = n; Real* s = store; int d = spacing;
// while (i--) { sum += (long_Real)*s * *s; s += d; }
if (i) for(;;)
{ sum += (long_Real)*s * *s; if (!(--i)) break; s += d; }
return (Real)sum;
}
Real RectMatrixRowCol::operator*(const RectMatrixRowCol& rmrc) const
{
REPORT
long_Real sum = 0.0; int i = n;
Real* s = store; int d = spacing;
Real* s1 = rmrc.store; int d1 = rmrc.spacing;
if (i!=rmrc.n)
{
Tracer tr("newmatrm");
Throw(InternalException("Dimensions differ in *"));
}
// while (i--) { sum += (long_Real)*s * *s1; s += d; s1 += d1; }
if (i) for(;;)
{ sum += (long_Real)*s * *s1; if (!(--i)) break; s += d; s1 += d1; }
return (Real)sum;
}
void RectMatrixRowCol::AddScaled(const RectMatrixRowCol& rmrc, Real r)
{
REPORT
int i = n; Real* s = store; int d = spacing;
Real* s1 = rmrc.store; int d1 = rmrc.spacing;
if (i!=rmrc.n)
{
Tracer tr("newmatrm");
Throw(InternalException("Dimensions differ in AddScaled"));
}
// while (i--) { *s += *s1 * r; s += d; s1 += d1; }
if (i) for (;;)
{ *s += *s1 * r; if (!(--i)) break; s += d; s1 += d1; }
}
void RectMatrixRowCol::Divide(const RectMatrixRowCol& rmrc, Real r)
{
REPORT
int i = n; Real* s = store; int d = spacing;
Real* s1 = rmrc.store; int d1 = rmrc.spacing;
if (i!=rmrc.n)
{
Tracer tr("newmatrm");
Throw(InternalException("Dimensions differ in Divide"));
}
// while (i--) { *s = *s1 / r; s += d; s1 += d1; }
if (i) for (;;) { *s = *s1 / r; if (!(--i)) break; s += d; s1 += d1; }
}
void RectMatrixRowCol::Divide(Real r)
{
REPORT
int i = n; Real* s = store; int d = spacing;
// while (i--) { *s /= r; s += d; }
if (i) for (;;) { *s /= r; if (!(--i)) break; s += d; }
}
void RectMatrixRowCol::Negate()
{
REPORT
int i = n; Real* s = store; int d = spacing;
// while (i--) { *s = - *s; s += d; }
if (i) for (;;) { *s = - *s; if (!(--i)) break; s += d; }
}
void RectMatrixRowCol::Zero()
{
REPORT
int i = n; Real* s = store; int d = spacing;
// while (i--) { *s = 0.0; s += d; }
if (i) for (;;) { *s = 0.0; if (!(--i)) break; s += d; }
}
void ComplexScale(RectMatrixCol& U, RectMatrixCol& V, Real x, Real y)
{
REPORT
int n = U.n;
if (n != V.n)
{
Tracer tr("newmatrm");
Throw(InternalException("Dimensions differ in ComplexScale"));
}
Real* u = U.store; Real* v = V.store;
int su = U.spacing; int sv = V.spacing;
//while (n--)
//{
// Real z = *u * x - *v * y; *v = *u * y + *v * x; *u = z;
// u += su; v += sv;
//}
if (n) for (;;)
{
Real z = *u * x - *v * y; *v = *u * y + *v * x; *u = z;
if (!(--n)) break;
u += su; v += sv;
}
}
void Rotate(RectMatrixCol& U, RectMatrixCol& V, Real tau, Real s)
{
REPORT
// (U, V) = (U, V) * (c, s) where tau = s/(1+c), c^2 + s^2 = 1
int n = U.n;
if (n != V.n)
{
Tracer tr("newmatrm");
Throw(InternalException("Dimensions differ in Rotate"));
}
Real* u = U.store; Real* v = V.store;
int su = U.spacing; int sv = V.spacing;
//while (n--)
//{
// Real zu = *u; Real zv = *v;
// *u -= s * (zv + zu * tau); *v += s * (zu - zv * tau);
// u += su; v += sv;
//}
if (n) for(;;)
{
Real zu = *u; Real zv = *v;
*u -= s * (zv + zu * tau); *v += s * (zu - zv * tau);
if (!(--n)) break;
u += su; v += sv;
}
}
#ifdef use_namespace
}
#endif
|