summaryrefslogtreecommitdiffstats
path: root/third_party/jpeg-xl/lib/jxl/enc_linalg.h
blob: b9a36c7ca10f0083140841cf175d8b3d56259cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#ifndef LIB_JXL_LINALG_H_
#define LIB_JXL_LINALG_H_

// Linear algebra.

#include <array>

namespace jxl {

typedef std::array<double, 2> Vector2;
// NB: matrix2x2[row][column]
typedef std::array<Vector2, 2> Matrix2x2;

// A is symmetric, U is orthogonal, and A = U * Diagonal(diag) * Transpose(U).
void ConvertToDiagonal(const Matrix2x2& A, Vector2& diag, Matrix2x2& U);

}  // namespace jxl

#endif  // LIB_JXL_LINALG_H_