summaryrefslogtreecommitdiff
path: root/include/mat33.h
blob: de7debbbc16c9b4c37ee1b1e499c0bc277b179b0 (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
25
26
27
28
29
30
/* Copyright 2015 The Chromium OS 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 __CROS_EC_MAT_33_H

#define __CROS_EC_MAT_33_H

#include "vec3.h"
#include "util.h"

typedef float mat33_t[3][3];
typedef size_t size3_t[3];

void init_zero_matrix(mat33_t A);
void init_diagonal_matrix(mat33_t A, float x);

void mat33_scalar_mul(mat33_t A, float c);

void mat33_swap_rows(mat33_t A, const size_t i, const size_t j);

void mat33_get_eigenbasis(mat33_t S, vec3_t eigenvals, mat33_t eigenvecs);

size_t mat33_maxind(mat33_t A, size_t k);

void mat33_rotate(mat33_t A, float c, float s,
		  size_t k, size_t l, size_t i, size_t j);

#endif  /* __CROS_EC_MAT_33_H */