mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 11:02:19 +08:00
f92c30b164
* fix build warnings * cython fixes * cleanup transformations build * little more old-commit-hash: 96b637737bd42b334bffb188d278766bd0abe6c6
19 lines
290 B
Cython
19 lines
290 B
Cython
# cython: language_level = 3
|
|
|
|
cdef class KF1D:
|
|
cdef public:
|
|
double x0_0
|
|
double x1_0
|
|
double K0_0
|
|
double K1_0
|
|
double A0_0
|
|
double A0_1
|
|
double A1_0
|
|
double A1_1
|
|
double C0_0
|
|
double C0_1
|
|
double A_K_0
|
|
double A_K_1
|
|
double A_K_2
|
|
double A_K_3
|