ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
Jacobi.h File Reference
#include "SquareMatrix.h"
Include dependency graph for Jacobi.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Jacobi< Scalar >
 Jacobi eigen vectors/values decomposition. More...
 

Macros

#define ROTATE(a, i, j, k, l)
 

Macro Definition Documentation

◆ ROTATE

#define ROTATE (   a,
  i,
  j,
  k,
 
)
Value:
{ \
Scalar g = a[i][j]; \
h = a[k][l]; \
a[i][j] = g - s * (h + g * tau); \
a[k][l] = h + s * (g - h * tau); \
}

Definition at line 13 of file Jacobi.h.