53 out.resize( in.rows(), in.cols() );
55 out.col( 0 ) = in.col( 0 );
57 for(
int i = 1; i < in.cols(); ++i )
61 std::cout << i + 1 <<
"/" << in.cols() <<
"\n";
66 out.col( i ) = in.col( i ) - ( ( in.col( i ).matrix().dot( out.col( 0 ).matrix() ) ) /
67 ( out.col( 0 ).matrix().dot( out.col( 0 ).matrix() ) ) ) *
70 for(
int j = 1; j < i; ++j )
72 out.col( i ) = out.col( i ) - ( ( out.col( i ).matrix().dot( out.col( j ).matrix() ) ) /
73 ( out.col( j ).matrix().dot( out.col( j ).matrix() ) ) ) *
80 for(
int i = 0; i < out.cols(); ++i )
82 out.col( i ) = out.col( i ) / out.col( i ).matrix().norm();
103void gramSchmidt( eigenTout &out,
const eigenTin &in,
const eigenTWin &window )
107 out.col( 0 ) = in.col( 0 );
109 for(
int i = 1; i < in.cols(); ++i )
113 std::cout << i + 1 <<
"/" << in.cols() <<
"\n";
118 out.col( i ) = in.col( i ) - ( ( ( in.col( i ) * window ).matrix().dot( out.col( 0 ).matrix() ) ) /
119 ( ( out.col( 0 ) * window ).matrix().dot( out.col( 0 ).matrix() ) ) ) *
122 for(
int j = 1; j < i; ++j )
124 out.col( i ) = out.col( i ) - ( ( ( out.col( i ) * window ).matrix().dot( out.col( j ).matrix() ) ) /
125 ( ( out.col( j ) * window ).matrix().dot( out.col( j ).matrix() ) ) ) *
130 for(
int i = 0; i < out.cols(); ++i )
132 out.col( i ) = out.col( i ) / ( out.col( i ) * window.sqrt() ).matrix().norm();
174 typename eigenTin::Scalar normPix = 0.0
178 typedef typename eigenTout::Scalar Scalar;
180 out.resize( in.rows(), in.cols() );
184 gsspect.resize( in.cols(), in.cols() );
187 out.col( 0 ) = in.col( 0 );
190 for(
int i = 1; i < in.cols(); ++i )
194 std::cout << i + 1 <<
"/" << in.cols() <<
"\n";
199 gsspect( i, 0 ) = ( ( in.col( i ).matrix().dot( out.col( 0 ).matrix() ) ) /
200 ( out.col( 0 ).matrix().dot( out.col( 0 ).matrix() ) ) );
201 out.col( i ) = in.col( i ) - gsspect( i, 0 ) * out.col( 0 );
203 for(
int j = 1; j < i; ++j )
205 gsspect( i, j ) = ( ( out.col( i ).matrix().dot( out.col( j ).matrix() ) ) /
206 ( out.col( j ).matrix().dot( out.col( j ).matrix() ) ) );
207 out.col( i ) = out.col( i ) - gsspect( i, j ) * out.col( j );
212 baseSpectrum( spect, gsspect );
218 for(
int i = 0; i < out.cols(); ++i )
220 norm = sqrt( out.col( i ).square().sum() / normPix );
222 out.col( i ) /= norm;
void gramSchmidtSpectrum(eigenTout &out, eigenTout2 &spect, const eigenTin &in, typename eigenTin::Scalar normPix=0.0)
Perform Gram-Schmidt ortogonalization of a basis set, and normalize the result, while recording the s...
void gramSchmidt(eigenTout &out, const eigenTin &in, bool normalize=true)
Perform Gram-Schmidt ortogonalization of a basis set, and normalize the result.