mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
globally remove all trailing whitespace from ardour code base.
Paul Davis was responsible for introducing almost all of this.
This commit is contained in:
parent
297e80e020
commit
4dc63966f0
774 changed files with 7919 additions and 7919 deletions
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#define EPS 2.2204e-016
|
||||
|
||||
class Correlation
|
||||
class Correlation
|
||||
{
|
||||
public:
|
||||
void doAutoUnBiased( double* src, double* dst, unsigned int length );
|
||||
|
|
@ -27,4 +27,4 @@ public:
|
|||
|
||||
};
|
||||
|
||||
#endif //
|
||||
#endif //
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include "nan-inf.h"
|
||||
|
||||
class MathUtilities
|
||||
class MathUtilities
|
||||
{
|
||||
public:
|
||||
static double round( double x );
|
||||
|
|
|
|||
|
|
@ -53,13 +53,13 @@ public:
|
|||
const vector<double> &y,
|
||||
vector<double> &coef);
|
||||
|
||||
|
||||
|
||||
private:
|
||||
TPolyFit &operator = (const TPolyFit &); // disable assignment
|
||||
TPolyFit(); // and instantiation
|
||||
TPolyFit(const TPolyFit&); // and copying
|
||||
|
||||
|
||||
|
||||
static void Square (const Matrix &x, // Matrix multiplication routine
|
||||
const vector<double> &y,
|
||||
Matrix &a, // A = transpose X times X
|
||||
|
|
@ -260,8 +260,8 @@ bool TPolyFit::GaussJordan (Matrix &b,
|
|||
|
||||
for( int i = 0; i < ncol; ++i)
|
||||
coef[i] = w[i][0];
|
||||
|
||||
|
||||
|
||||
|
||||
return true;
|
||||
} // end; { procedure GaussJordan }
|
||||
//----------------------------------------------------------------------------------------------
|
||||
|
|
@ -274,7 +274,7 @@ bool TPolyFit::GaussJordan2(Matrix &b,
|
|||
{
|
||||
//GaussJordan2; // first half of GaussJordan
|
||||
// actual start of gaussj
|
||||
|
||||
|
||||
double big, t;
|
||||
double pivot;
|
||||
double determ;
|
||||
|
|
@ -405,4 +405,4 @@ void NSUtility::zeroise(vector<vector<int> > &matrix, int m, int n)
|
|||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@
|
|||
Earn/Bitnet: fionn@dgaeso51, fim@dgaipp1s, murtagh@stsci
|
||||
Span: esomc1::fionn
|
||||
Internet: murtagh@scivax.stsci.edu
|
||||
|
||||
F. Murtagh, Munich, 6 June 1989 */
|
||||
|
||||
F. Murtagh, Munich, 6 June 1989 */
|
||||
/*********************************************************************/
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
@ -269,7 +269,7 @@ void pca_project(double** data, int n, int m, int ncomponents)
|
|||
/* Allocate storage for dummy and new vectors. */
|
||||
evals = (double*) malloc(m*sizeof(double)); /* Storage alloc. for vector of eigenvalues */
|
||||
interm = (double*) malloc(m*sizeof(double)); /* Storage alloc. for 'intermediate' vector */
|
||||
//MALLOC_ARRAY(symmat2,m,m,double);
|
||||
//MALLOC_ARRAY(symmat2,m,m,double);
|
||||
//for (i = 0; i < m; i++) {
|
||||
// for (j = 0; j < m; j++) {
|
||||
// symmat2[i][j] = symmat[i][j]; /* Needed below for col. projections */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue