Paparazzi UAS  v5.14.0_stable-0-g3f680d1
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
pprz_algebra_float.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2014 The Paparazzi Team
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, see
18  * <http://www.gnu.org/licenses/>.
19  */
20 
27 #include "pprz_algebra_float.h"
28 
30 void float_vect3_integrate_fi(struct FloatVect3 *vec, struct FloatVect3 *dv, float dt)
31 {
32  vec->x += dv->x * dt;
33  vec->y += dv->y * dt;
34  vec->z += dv->z * dt;
35 }
36 
38 void float_rates_integrate_fi(struct FloatRates *r, struct FloatRates *dr, float dt)
39 {
40  r->p += dr->p * dt;
41  r->q += dr->q * dt;
42  r->r += dr->r * dt;
43 }
44 
45 void float_rates_of_euler_dot(struct FloatRates *r, struct FloatEulers *e, struct FloatEulers *edot)
46 {
47  r->p = edot->phi - sinf(e->theta) * edot->psi;
48  r->q = cosf(e->phi) * edot->theta + sinf(e->phi) * cosf(e->theta) * edot->psi;
49  r->r = -sinf(e->phi) * edot->theta + cosf(e->phi) * cosf(e->theta) * edot->psi;
50 }
51 
52 
53 
54 
55 void float_rmat_inv(struct FloatRMat *m_b2a, struct FloatRMat *m_a2b)
56 {
57  RMAT_ELMT(*m_b2a, 0, 0) = RMAT_ELMT(*m_a2b, 0, 0);
58  RMAT_ELMT(*m_b2a, 0, 1) = RMAT_ELMT(*m_a2b, 1, 0);
59  RMAT_ELMT(*m_b2a, 0, 2) = RMAT_ELMT(*m_a2b, 2, 0);
60  RMAT_ELMT(*m_b2a, 1, 0) = RMAT_ELMT(*m_a2b, 0, 1);
61  RMAT_ELMT(*m_b2a, 1, 1) = RMAT_ELMT(*m_a2b, 1, 1);
62  RMAT_ELMT(*m_b2a, 1, 2) = RMAT_ELMT(*m_a2b, 2, 1);
63  RMAT_ELMT(*m_b2a, 2, 0) = RMAT_ELMT(*m_a2b, 0, 2);
64  RMAT_ELMT(*m_b2a, 2, 1) = RMAT_ELMT(*m_a2b, 1, 2);
65  RMAT_ELMT(*m_b2a, 2, 2) = RMAT_ELMT(*m_a2b, 2, 2);
66 }
67 
68 float float_rmat_norm(struct FloatRMat *rm)
69 {
70  return sqrtf(SQUARE(rm->m[0]) + SQUARE(rm->m[1]) + SQUARE(rm->m[2]) +
71  SQUARE(rm->m[3]) + SQUARE(rm->m[4]) + SQUARE(rm->m[5]) +
72  SQUARE(rm->m[6]) + SQUARE(rm->m[7]) + SQUARE(rm->m[8]));
73 }
74 
78 void float_rmat_comp(struct FloatRMat *m_a2c, struct FloatRMat *m_a2b, struct FloatRMat *m_b2c)
79 {
80  m_a2c->m[0] = m_b2c->m[0] * m_a2b->m[0] + m_b2c->m[1] * m_a2b->m[3] + m_b2c->m[2] * m_a2b->m[6];
81  m_a2c->m[1] = m_b2c->m[0] * m_a2b->m[1] + m_b2c->m[1] * m_a2b->m[4] + m_b2c->m[2] * m_a2b->m[7];
82  m_a2c->m[2] = m_b2c->m[0] * m_a2b->m[2] + m_b2c->m[1] * m_a2b->m[5] + m_b2c->m[2] * m_a2b->m[8];
83  m_a2c->m[3] = m_b2c->m[3] * m_a2b->m[0] + m_b2c->m[4] * m_a2b->m[3] + m_b2c->m[5] * m_a2b->m[6];
84  m_a2c->m[4] = m_b2c->m[3] * m_a2b->m[1] + m_b2c->m[4] * m_a2b->m[4] + m_b2c->m[5] * m_a2b->m[7];
85  m_a2c->m[5] = m_b2c->m[3] * m_a2b->m[2] + m_b2c->m[4] * m_a2b->m[5] + m_b2c->m[5] * m_a2b->m[8];
86  m_a2c->m[6] = m_b2c->m[6] * m_a2b->m[0] + m_b2c->m[7] * m_a2b->m[3] + m_b2c->m[8] * m_a2b->m[6];
87  m_a2c->m[7] = m_b2c->m[6] * m_a2b->m[1] + m_b2c->m[7] * m_a2b->m[4] + m_b2c->m[8] * m_a2b->m[7];
88  m_a2c->m[8] = m_b2c->m[6] * m_a2b->m[2] + m_b2c->m[7] * m_a2b->m[5] + m_b2c->m[8] * m_a2b->m[8];
89 }
90 
94 void float_rmat_comp_inv(struct FloatRMat *m_a2b, struct FloatRMat *m_a2c, struct FloatRMat *m_b2c)
95 {
96  m_a2b->m[0] = m_b2c->m[0] * m_a2c->m[0] + m_b2c->m[3] * m_a2c->m[3] + m_b2c->m[6] * m_a2c->m[6];
97  m_a2b->m[1] = m_b2c->m[0] * m_a2c->m[1] + m_b2c->m[3] * m_a2c->m[4] + m_b2c->m[6] * m_a2c->m[7];
98  m_a2b->m[2] = m_b2c->m[0] * m_a2c->m[2] + m_b2c->m[3] * m_a2c->m[5] + m_b2c->m[6] * m_a2c->m[8];
99  m_a2b->m[3] = m_b2c->m[1] * m_a2c->m[0] + m_b2c->m[4] * m_a2c->m[3] + m_b2c->m[7] * m_a2c->m[6];
100  m_a2b->m[4] = m_b2c->m[1] * m_a2c->m[1] + m_b2c->m[4] * m_a2c->m[4] + m_b2c->m[7] * m_a2c->m[7];
101  m_a2b->m[5] = m_b2c->m[1] * m_a2c->m[2] + m_b2c->m[4] * m_a2c->m[5] + m_b2c->m[7] * m_a2c->m[8];
102  m_a2b->m[6] = m_b2c->m[2] * m_a2c->m[0] + m_b2c->m[5] * m_a2c->m[3] + m_b2c->m[8] * m_a2c->m[6];
103  m_a2b->m[7] = m_b2c->m[2] * m_a2c->m[1] + m_b2c->m[5] * m_a2c->m[4] + m_b2c->m[8] * m_a2c->m[7];
104  m_a2b->m[8] = m_b2c->m[2] * m_a2c->m[2] + m_b2c->m[5] * m_a2c->m[5] + m_b2c->m[8] * m_a2c->m[8];
105 }
106 
110 void float_rmat_vmult(struct FloatVect3 *vb, struct FloatRMat *m_a2b, struct FloatVect3 *va)
111 {
112  vb->x = m_a2b->m[0] * va->x + m_a2b->m[1] * va->y + m_a2b->m[2] * va->z;
113  vb->y = m_a2b->m[3] * va->x + m_a2b->m[4] * va->y + m_a2b->m[5] * va->z;
114  vb->z = m_a2b->m[6] * va->x + m_a2b->m[7] * va->y + m_a2b->m[8] * va->z;
115 }
116 
120 void float_rmat_transp_vmult(struct FloatVect3 *vb, struct FloatRMat *m_b2a, struct FloatVect3 *va)
121 {
122  vb->x = m_b2a->m[0] * va->x + m_b2a->m[3] * va->y + m_b2a->m[6] * va->z;
123  vb->y = m_b2a->m[1] * va->x + m_b2a->m[4] * va->y + m_b2a->m[7] * va->z;
124  vb->z = m_b2a->m[2] * va->x + m_b2a->m[5] * va->y + m_b2a->m[8] * va->z;
125 }
126 
130 void float_rmat_mult(struct FloatEulers *rb, struct FloatRMat *m_a2b, struct FloatEulers *ra)
131 {
132  rb->phi = m_a2b->m[0] * ra->phi + m_a2b->m[1] * ra->theta + m_a2b->m[2] * ra->psi;
133  rb->theta = m_a2b->m[3] * ra->phi + m_a2b->m[4] * ra->theta + m_a2b->m[5] * ra->psi;
134  rb->psi = m_a2b->m[6] * ra->phi + m_a2b->m[7] * ra->theta + m_a2b->m[8] * ra->psi;
135 }
136 
140 void float_rmat_transp_mult(struct FloatEulers *rb, struct FloatRMat *m_b2a, struct FloatEulers *ra)
141 {
142  rb->phi = m_b2a->m[0] * ra->phi + m_b2a->m[3] * ra->theta + m_b2a->m[6] * ra->psi;
143  rb->theta = m_b2a->m[1] * ra->phi + m_b2a->m[4] * ra->theta + m_b2a->m[7] * ra->psi;
144  rb->psi = m_b2a->m[2] * ra->phi + m_b2a->m[5] * ra->theta + m_b2a->m[8] * ra->psi;
145 }
146 
150 void float_rmat_ratemult(struct FloatRates *rb, struct FloatRMat *m_a2b, struct FloatRates *ra)
151 {
152  rb->p = m_a2b->m[0] * ra->p + m_a2b->m[1] * ra->q + m_a2b->m[2] * ra->r;
153  rb->q = m_a2b->m[3] * ra->p + m_a2b->m[4] * ra->q + m_a2b->m[5] * ra->r;
154  rb->r = m_a2b->m[6] * ra->p + m_a2b->m[7] * ra->q + m_a2b->m[8] * ra->r;
155 }
156 
160 void float_rmat_transp_ratemult(struct FloatRates *rb, struct FloatRMat *m_b2a, struct FloatRates *ra)
161 {
162  rb->p = m_b2a->m[0] * ra->p + m_b2a->m[3] * ra->q + m_b2a->m[6] * ra->r;
163  rb->q = m_b2a->m[1] * ra->p + m_b2a->m[4] * ra->q + m_b2a->m[7] * ra->r;
164  rb->r = m_b2a->m[2] * ra->p + m_b2a->m[5] * ra->q + m_b2a->m[8] * ra->r;
165 }
166 
167 
169 void float_rmat_of_axis_angle(struct FloatRMat *rm, struct FloatVect3 *uv, float angle)
170 {
171  const float ux2 = uv->x * uv->x;
172  const float uy2 = uv->y * uv->y;
173  const float uz2 = uv->z * uv->z;
174  const float uxuy = uv->x * uv->y;
175  const float uyuz = uv->y * uv->z;
176  const float uxuz = uv->x * uv->z;
177  const float can = cosf(angle);
178  const float san = sinf(angle);
179  const float one_m_can = (1. - can);
180 
181  RMAT_ELMT(*rm, 0, 0) = ux2 + (1. - ux2) * can;
182  RMAT_ELMT(*rm, 0, 1) = uxuy * one_m_can + uv->z * san;
183  RMAT_ELMT(*rm, 0, 2) = uxuz * one_m_can - uv->y * san;
184  RMAT_ELMT(*rm, 1, 0) = RMAT_ELMT(*rm, 0, 1);
185  RMAT_ELMT(*rm, 1, 1) = uy2 + (1. - uy2) * can;
186  RMAT_ELMT(*rm, 1, 2) = uyuz * one_m_can + uv->x * san;
187  RMAT_ELMT(*rm, 2, 0) = RMAT_ELMT(*rm, 0, 2);
188  RMAT_ELMT(*rm, 2, 1) = RMAT_ELMT(*rm, 1, 2);
189  RMAT_ELMT(*rm, 2, 2) = uz2 + (1. - uz2) * can;
190 }
191 
192 
193 /* C n->b rotation matrix */
194 void float_rmat_of_eulers_321(struct FloatRMat *rm, struct FloatEulers *e)
195 {
196  const float sphi = sinf(e->phi);
197  const float cphi = cosf(e->phi);
198  const float stheta = sinf(e->theta);
199  const float ctheta = cosf(e->theta);
200  const float spsi = sinf(e->psi);
201  const float cpsi = cosf(e->psi);
202 
203  RMAT_ELMT(*rm, 0, 0) = ctheta * cpsi;
204  RMAT_ELMT(*rm, 0, 1) = ctheta * spsi;
205  RMAT_ELMT(*rm, 0, 2) = -stheta;
206  RMAT_ELMT(*rm, 1, 0) = sphi * stheta * cpsi - cphi * spsi;
207  RMAT_ELMT(*rm, 1, 1) = sphi * stheta * spsi + cphi * cpsi;
208  RMAT_ELMT(*rm, 1, 2) = sphi * ctheta;
209  RMAT_ELMT(*rm, 2, 0) = cphi * stheta * cpsi + sphi * spsi;
210  RMAT_ELMT(*rm, 2, 1) = cphi * stheta * spsi - sphi * cpsi;
211  RMAT_ELMT(*rm, 2, 2) = cphi * ctheta;
212 }
213 
214 void float_rmat_of_eulers_312(struct FloatRMat *rm, struct FloatEulers *e)
215 {
216  const float sphi = sinf(e->phi);
217  const float cphi = cosf(e->phi);
218  const float stheta = sinf(e->theta);
219  const float ctheta = cosf(e->theta);
220  const float spsi = sinf(e->psi);
221  const float cpsi = cosf(e->psi);
222 
223  RMAT_ELMT(*rm, 0, 0) = ctheta * cpsi - sphi * stheta * spsi;
224  RMAT_ELMT(*rm, 0, 1) = ctheta * spsi + sphi * stheta * cpsi;
225  RMAT_ELMT(*rm, 0, 2) = -cphi * stheta;
226  RMAT_ELMT(*rm, 1, 0) = -cphi * spsi;
227  RMAT_ELMT(*rm, 1, 1) = cphi * cpsi;
228  RMAT_ELMT(*rm, 1, 2) = sphi;
229  RMAT_ELMT(*rm, 2, 0) = stheta * cpsi + sphi * ctheta * spsi;
230  RMAT_ELMT(*rm, 2, 1) = stheta * spsi - sphi * ctheta * cpsi;
231  RMAT_ELMT(*rm, 2, 2) = cphi * ctheta;
232 }
233 
234 
235 /* C n->b rotation matrix */
236 void float_rmat_of_quat(struct FloatRMat *rm, struct FloatQuat *q)
237 {
238  const float _a = M_SQRT2 * q->qi;
239  const float _b = M_SQRT2 * q->qx;
240  const float _c = M_SQRT2 * q->qy;
241  const float _d = M_SQRT2 * q->qz;
242  const float a2_1 = _a * _a - 1;
243  const float ab = _a * _b;
244  const float ac = _a * _c;
245  const float ad = _a * _d;
246  const float bc = _b * _c;
247  const float bd = _b * _d;
248  const float cd = _c * _d;
249  RMAT_ELMT(*rm, 0, 0) = a2_1 + _b * _b;
250  RMAT_ELMT(*rm, 0, 1) = bc + ad;
251  RMAT_ELMT(*rm, 0, 2) = bd - ac;
252  RMAT_ELMT(*rm, 1, 0) = bc - ad;
253  RMAT_ELMT(*rm, 1, 1) = a2_1 + _c * _c;
254  RMAT_ELMT(*rm, 1, 2) = cd + ab;
255  RMAT_ELMT(*rm, 2, 0) = bd + ac;
256  RMAT_ELMT(*rm, 2, 1) = cd - ab;
257  RMAT_ELMT(*rm, 2, 2) = a2_1 + _d * _d;
258 }
259 
261 void float_rmat_integrate_fi(struct FloatRMat *rm, struct FloatRates *omega, float dt)
262 {
263  struct FloatRMat exp_omega_dt = {
264  {
265  1. , dt *omega->r, -dt *omega->q,
266  -dt *omega->r, 1. , dt *omega->p,
267  dt *omega->q, -dt *omega->p, 1.
268  }
269  };
270  struct FloatRMat R_tdt;
271  float_rmat_comp(&R_tdt, rm, &exp_omega_dt);
272  memcpy(rm, &R_tdt, sizeof(R_tdt));
273 }
274 
275 static inline float renorm_factor(float n)
276 {
277  if (n < 1.5625f && n > 0.64f) {
278  return .5 * (3 - n);
279  } else if (n < 100.0f && n > 0.01f) {
280  return 1. / sqrtf(n);
281  } else {
282  return 0.;
283  }
284 }
285 
287 {
288  const struct FloatVect3 r0 = {RMAT_ELMT(*rm, 0, 0),
289  RMAT_ELMT(*rm, 0, 1),
290  RMAT_ELMT(*rm, 0, 2)
291  };
292  const struct FloatVect3 r1 = {RMAT_ELMT(*rm, 1, 0),
293  RMAT_ELMT(*rm, 1, 1),
294  RMAT_ELMT(*rm, 1, 2)
295  };
296  float _err = -0.5 * VECT3_DOT_PRODUCT(r0, r1);
297  struct FloatVect3 r0_t;
298  VECT3_SUM_SCALED(r0_t, r0, r1, _err);
299  struct FloatVect3 r1_t;
300  VECT3_SUM_SCALED(r1_t, r1, r0, _err);
301  struct FloatVect3 r2_t;
302  VECT3_CROSS_PRODUCT(r2_t, r0_t, r1_t);
303  float s = renorm_factor(VECT3_NORM2(r0_t));
304  MAT33_ROW_VECT3_SMUL(*rm, 0, r0_t, s);
305  s = renorm_factor(VECT3_NORM2(r1_t));
306  MAT33_ROW_VECT3_SMUL(*rm, 1, r1_t, s);
307  s = renorm_factor(VECT3_NORM2(r2_t));
308  MAT33_ROW_VECT3_SMUL(*rm, 2, r2_t, s);
309 
310  return _err;
311 }
312 
313 
314 /*
315  *
316  * Quaternion functions.
317  *
318  */
319 
320 void float_quat_comp(struct FloatQuat *a2c, struct FloatQuat *a2b, struct FloatQuat *b2c)
321 {
322  a2c->qi = a2b->qi * b2c->qi - a2b->qx * b2c->qx - a2b->qy * b2c->qy - a2b->qz * b2c->qz;
323  a2c->qx = a2b->qi * b2c->qx + a2b->qx * b2c->qi + a2b->qy * b2c->qz - a2b->qz * b2c->qy;
324  a2c->qy = a2b->qi * b2c->qy - a2b->qx * b2c->qz + a2b->qy * b2c->qi + a2b->qz * b2c->qx;
325  a2c->qz = a2b->qi * b2c->qz + a2b->qx * b2c->qy - a2b->qy * b2c->qx + a2b->qz * b2c->qi;
326 }
327 
328 void float_quat_comp_inv(struct FloatQuat *a2b, struct FloatQuat *a2c, struct FloatQuat *b2c)
329 {
330  a2b->qi = a2c->qi * b2c->qi + a2c->qx * b2c->qx + a2c->qy * b2c->qy + a2c->qz * b2c->qz;
331  a2b->qx = -a2c->qi * b2c->qx + a2c->qx * b2c->qi - a2c->qy * b2c->qz + a2c->qz * b2c->qy;
332  a2b->qy = -a2c->qi * b2c->qy + a2c->qx * b2c->qz + a2c->qy * b2c->qi - a2c->qz * b2c->qx;
333  a2b->qz = -a2c->qi * b2c->qz - a2c->qx * b2c->qy + a2c->qy * b2c->qx + a2c->qz * b2c->qi;
334 }
335 
336 void float_quat_inv_comp(struct FloatQuat *b2c, struct FloatQuat *a2b, struct FloatQuat *a2c)
337 {
338  b2c->qi = a2b->qi * a2c->qi + a2b->qx * a2c->qx + a2b->qy * a2c->qy + a2b->qz * a2c->qz;
339  b2c->qx = a2b->qi * a2c->qx - a2b->qx * a2c->qi - a2b->qy * a2c->qz + a2b->qz * a2c->qy;
340  b2c->qy = a2b->qi * a2c->qy + a2b->qx * a2c->qz - a2b->qy * a2c->qi - a2b->qz * a2c->qx;
341  b2c->qz = a2b->qi * a2c->qz - a2b->qx * a2c->qy + a2b->qy * a2c->qx - a2b->qz * a2c->qi;
342 }
343 
344 void float_quat_comp_norm_shortest(struct FloatQuat *a2c, struct FloatQuat *a2b, struct FloatQuat *b2c)
345 {
346  float_quat_comp(a2c, a2b, b2c);
349 }
350 
351 void float_quat_comp_inv_norm_shortest(struct FloatQuat *a2b, struct FloatQuat *a2c, struct FloatQuat *b2c)
352 {
353  float_quat_comp_inv(a2b, a2c, b2c);
356 }
357 
358 void float_quat_inv_comp_norm_shortest(struct FloatQuat *b2c, struct FloatQuat *a2b, struct FloatQuat *a2c)
359 {
360  float_quat_inv_comp(b2c, a2b, a2c);
363 }
364 
365 void float_quat_differential(struct FloatQuat *q_out, struct FloatRates *w, float dt)
366 {
367  const float v_norm = sqrtf(w->p * w->p + w->q * w->q + w->r * w->r);
368  const float c2 = cos(dt * v_norm / 2.0);
369  const float s2 = sin(dt * v_norm / 2.0);
370  if (v_norm < 1e-8) {
371  q_out->qi = 1;
372  q_out->qx = 0;
373  q_out->qy = 0;
374  q_out->qz = 0;
375  } else {
376  q_out->qi = c2;
377  q_out->qx = w->p / v_norm * s2;
378  q_out->qy = w->q / v_norm * s2;
379  q_out->qz = w->r / v_norm * s2;
380  }
381 }
382 
384 void float_quat_integrate_fi(struct FloatQuat *q, struct FloatRates *omega, float dt)
385 {
386  const float qi = q->qi;
387  const float qx = q->qx;
388  const float qy = q->qy;
389  const float qz = q->qz;
390  const float dp = 0.5 * dt * omega->p;
391  const float dq = 0.5 * dt * omega->q;
392  const float dr = 0.5 * dt * omega->r;
393  q->qi = qi - dp * qx - dq * qy - dr * qz;
394  q->qx = dp * qi + qx + dr * qy - dq * qz;
395  q->qy = dq * qi - dr * qx + qy + dp * qz;
396  q->qz = dr * qi + dq * qx - dp * qy + qz;
397 }
398 
400 void float_quat_integrate(struct FloatQuat *q, struct FloatRates *omega, float dt)
401 {
402  const float no = FLOAT_RATES_NORM(*omega);
403  if (no > FLT_MIN) {
404  const float a = 0.5 * no * dt;
405  const float ca = cosf(a);
406  const float sa_ov_no = sinf(a) / no;
407  const float dp = sa_ov_no * omega->p;
408  const float dq = sa_ov_no * omega->q;
409  const float dr = sa_ov_no * omega->r;
410  const float qi = q->qi;
411  const float qx = q->qx;
412  const float qy = q->qy;
413  const float qz = q->qz;
414  q->qi = ca * qi - dp * qx - dq * qy - dr * qz;
415  q->qx = dp * qi + ca * qx + dr * qy - dq * qz;
416  q->qy = dq * qi - dr * qx + ca * qy + dp * qz;
417  q->qz = dr * qi + dq * qx - dp * qy + ca * qz;
418  }
419 }
420 
421 void float_quat_vmult(struct FloatVect3 *v_out, struct FloatQuat *q, const struct FloatVect3 *v_in)
422 {
423  const float qi2_M1_2 = q->qi * q->qi - 0.5;
424  const float qiqx = q->qi * q->qx;
425  const float qiqy = q->qi * q->qy;
426  const float qiqz = q->qi * q->qz;
427  float m01 = q->qx * q->qy; /* aka qxqy */
428  float m02 = q->qx * q->qz; /* aka qxqz */
429  float m12 = q->qy * q->qz; /* aka qyqz */
430 
431  const float m00 = qi2_M1_2 + q->qx * q->qx;
432  const float m10 = m01 - qiqz;
433  const float m20 = m02 + qiqy;
434  const float m21 = m12 - qiqx;
435  m01 += qiqz;
436  m02 -= qiqy;
437  m12 += qiqx;
438  const float m11 = qi2_M1_2 + q->qy * q->qy;
439  const float m22 = qi2_M1_2 + q->qz * q->qz;
440  v_out->x = 2 * (m00 * v_in->x + m01 * v_in->y + m02 * v_in->z);
441  v_out->y = 2 * (m10 * v_in->x + m11 * v_in->y + m12 * v_in->z);
442  v_out->z = 2 * (m20 * v_in->x + m21 * v_in->y + m22 * v_in->z);
443 }
444 
450 void float_quat_derivative(struct FloatQuat *qd, struct FloatRates *r, struct FloatQuat *q)
451 {
452  qd->qi = -0.5 * (r->p * q->qx + r->q * q->qy + r->r * q->qz);
453  qd->qx = -0.5 * (-r->p * q->qi - r->r * q->qy + r->q * q->qz);
454  qd->qy = -0.5 * (-r->q * q->qi + r->r * q->qx - r->p * q->qz);
455  qd->qz = -0.5 * (-r->r * q->qi - r->q * q->qx + r->p * q->qy);
456 }
457 
461 void float_quat_derivative_lagrange(struct FloatQuat *qd, struct FloatRates *r, struct FloatQuat *q)
462 {
463  const float K_LAGRANGE = 1.;
464  const float c = K_LAGRANGE * (1 - float_quat_norm(q)) / -0.5;
465  qd->qi = -0.5 * (c * q->qi + r->p * q->qx + r->q * q->qy + r->r * q->qz);
466  qd->qx = -0.5 * (-r->p * q->qi + c * q->qx - r->r * q->qy + r->q * q->qz);
467  qd->qy = -0.5 * (-r->q * q->qi + r->r * q->qx + c * q->qy - r->p * q->qz);
468  qd->qz = -0.5 * (-r->r * q->qi - r->q * q->qx + r->p * q->qy + c * q->qz);
469 }
470 
477 void float_quat_of_eulers(struct FloatQuat *q, struct FloatEulers *e)
478 {
479 
480  const float phi2 = e->phi / 2.f;
481  const float theta2 = e->theta / 2.f;
482  const float psi2 = e->psi / 2.f;
483 
484  const float s_phi2 = sinf(phi2);
485  const float c_phi2 = cosf(phi2);
486  const float s_theta2 = sinf(theta2);
487  const float c_theta2 = cosf(theta2);
488  const float s_psi2 = sinf(psi2);
489  const float c_psi2 = cosf(psi2);
490 
491  q->qi = c_phi2 * c_theta2 * c_psi2 + s_phi2 * s_theta2 * s_psi2;
492  q->qx = -c_phi2 * s_theta2 * s_psi2 + s_phi2 * c_theta2 * c_psi2;
493  q->qy = c_phi2 * s_theta2 * c_psi2 + s_phi2 * c_theta2 * s_psi2;
494  q->qz = c_phi2 * c_theta2 * s_psi2 - s_phi2 * s_theta2 * c_psi2;
495 }
496 
505 {
506  const float phi2 = e->phi / 2.f;
507  const float theta2 = e->theta / 2.f;
508  const float psi2 = e->psi / 2.f;
509 
510  const float s_phi2 = sinf(phi2);
511  const float c_phi2 = cosf(phi2);
512  const float s_theta2 = sinf(theta2);
513  const float c_theta2 = cosf(theta2);
514  const float s_psi2 = sinf(psi2);
515  const float c_psi2 = cosf(psi2);
516 
517  q->qi = c_phi2 * c_theta2 * c_psi2 - s_phi2 * s_theta2 * s_psi2;
518  q->qx = s_phi2 * c_theta2 * c_psi2 - c_phi2 * s_theta2 * s_psi2;
519  q->qy = c_phi2 * s_theta2 * c_psi2 + s_phi2 * c_theta2 * s_psi2;
520  q->qz = s_phi2 * s_theta2 * c_psi2 + c_phi2 * c_theta2 * s_psi2;
521 }
522 
533 {
534  const float phi2 = e->phi / 2.f;
535  const float theta2 = e->theta / 2.f;
536  const float psi2 = e->psi / 2.f;
537 
538  const float s_phi2 = sinf(phi2);
539  const float c_phi2 = cosf(phi2);
540  const float s_theta2 = sinf(theta2);
541  const float c_theta2 = cosf(theta2);
542  const float s_psi2 = sinf(psi2);
543  const float c_psi2 = cosf(psi2);
544 
545  q->qi = c_theta2 * c_phi2 * c_psi2 + s_theta2 * s_phi2 * s_psi2;
546  q->qx = c_theta2 * s_phi2 * c_psi2 + s_theta2 * c_phi2 * s_psi2;
547  q->qy = s_theta2 * c_phi2 * c_psi2 - c_theta2 * s_phi2 * s_psi2;
548  q->qz = c_theta2 * c_phi2 * s_psi2 - s_theta2 * s_phi2 * c_psi2;
549 }
550 
551 void float_quat_of_axis_angle(struct FloatQuat *q, const struct FloatVect3 *uv, float angle)
552 {
553  const float san = sinf(angle / 2.f);
554  q->qi = cosf(angle / 2.f);
555  q->qx = san * uv->x;
556  q->qy = san * uv->y;
557  q->qz = san * uv->z;
558 }
559 
560 void float_quat_of_orientation_vect(struct FloatQuat *q, const struct FloatVect3 *ov)
561 {
562  const float ov_norm = sqrtf(ov->x * ov->x + ov->y * ov->y + ov->z * ov->z);
563  if (ov_norm < 1e-8) {
564  q->qi = 1;
565  q->qx = 0;
566  q->qy = 0;
567  q->qz = 0;
568  } else {
569  const float s2_normalized = sinf(ov_norm / 2.0) / ov_norm;
570  q->qi = cosf(ov_norm / 2.0);
571  q->qx = ov->x * s2_normalized;
572  q->qy = ov->y * s2_normalized;
573  q->qz = ov->z * s2_normalized;
574  }
575 }
576 
577 void float_quat_of_rmat(struct FloatQuat *q, struct FloatRMat *rm)
578 {
579  const float tr = RMAT_TRACE(*rm);
580  if (tr > 0) {
581  const float two_qi = sqrtf(1. + tr);
582  const float four_qi = 2. * two_qi;
583  q->qi = 0.5 * two_qi;
584  q->qx = (RMAT_ELMT(*rm, 1, 2) - RMAT_ELMT(*rm, 2, 1)) / four_qi;
585  q->qy = (RMAT_ELMT(*rm, 2, 0) - RMAT_ELMT(*rm, 0, 2)) / four_qi;
586  q->qz = (RMAT_ELMT(*rm, 0, 1) - RMAT_ELMT(*rm, 1, 0)) / four_qi;
587  /*printf("tr > 0\n");*/
588  } else {
589  if (RMAT_ELMT(*rm, 0, 0) > RMAT_ELMT(*rm, 1, 1) &&
590  RMAT_ELMT(*rm, 0, 0) > RMAT_ELMT(*rm, 2, 2)) {
591  const float two_qx = sqrtf(RMAT_ELMT(*rm, 0, 0) - RMAT_ELMT(*rm, 1, 1)
592  - RMAT_ELMT(*rm, 2, 2) + 1);
593  const float four_qx = 2. * two_qx;
594  q->qi = (RMAT_ELMT(*rm, 1, 2) - RMAT_ELMT(*rm, 2, 1)) / four_qx;
595  q->qx = 0.5 * two_qx;
596  q->qy = (RMAT_ELMT(*rm, 0, 1) + RMAT_ELMT(*rm, 1, 0)) / four_qx;
597  q->qz = (RMAT_ELMT(*rm, 2, 0) + RMAT_ELMT(*rm, 0, 2)) / four_qx;
598  /*printf("m00 largest\n");*/
599  } else if (RMAT_ELMT(*rm, 1, 1) > RMAT_ELMT(*rm, 2, 2)) {
600  const float two_qy =
601  sqrtf(RMAT_ELMT(*rm, 1, 1) - RMAT_ELMT(*rm, 0, 0) - RMAT_ELMT(*rm, 2, 2) + 1);
602  const float four_qy = 2. * two_qy;
603  q->qi = (RMAT_ELMT(*rm, 2, 0) - RMAT_ELMT(*rm, 0, 2)) / four_qy;
604  q->qx = (RMAT_ELMT(*rm, 0, 1) + RMAT_ELMT(*rm, 1, 0)) / four_qy;
605  q->qy = 0.5 * two_qy;
606  q->qz = (RMAT_ELMT(*rm, 1, 2) + RMAT_ELMT(*rm, 2, 1)) / four_qy;
607  /*printf("m11 largest\n");*/
608  } else {
609  const float two_qz =
610  sqrtf(RMAT_ELMT(*rm, 2, 2) - RMAT_ELMT(*rm, 0, 0) - RMAT_ELMT(*rm, 1, 1) + 1);
611  const float four_qz = 2. * two_qz;
612  q->qi = (RMAT_ELMT(*rm, 0, 1) - RMAT_ELMT(*rm, 1, 0)) / four_qz;
613  q->qx = (RMAT_ELMT(*rm, 2, 0) + RMAT_ELMT(*rm, 0, 2)) / four_qz;
614  q->qy = (RMAT_ELMT(*rm, 1, 2) + RMAT_ELMT(*rm, 2, 1)) / four_qz;
615  q->qz = 0.5 * two_qz;
616  /*printf("m22 largest\n");*/
617  }
618  }
619 }
620 
621 
622 /*
623  *
624  * Euler angle functions.
625  *
626  */
627 
628 void float_eulers_of_rmat(struct FloatEulers *e, struct FloatRMat *rm)
629 {
630  const float dcm00 = rm->m[0];
631  const float dcm01 = rm->m[1];
632  const float dcm02 = rm->m[2];
633  const float dcm12 = rm->m[5];
634  const float dcm22 = rm->m[8];
635  e->phi = atan2f(dcm12, dcm22);
636  e->theta = -asinf(dcm02);
637  e->psi = atan2f(dcm01, dcm00);
638 }
639 
646 void float_eulers_of_quat(struct FloatEulers *e, struct FloatQuat *q)
647 {
648  const float qx2 = q->qx * q->qx;
649  const float qy2 = q->qy * q->qy;
650  const float qz2 = q->qz * q->qz;
651  const float qiqx = q->qi * q->qx;
652  const float qiqy = q->qi * q->qy;
653  const float qiqz = q->qi * q->qz;
654  const float qxqy = q->qx * q->qy;
655  const float qxqz = q->qx * q->qz;
656  const float qyqz = q->qy * q->qz;
657  const float dcm00 = 1.0 - 2.*(qy2 + qz2);
658  const float dcm01 = 2.*(qxqy + qiqz);
659  const float dcm02 = 2.*(qxqz - qiqy);
660  const float dcm12 = 2.*(qyqz + qiqx);
661  const float dcm22 = 1.0 - 2.*(qx2 + qy2);
662 
663  e->phi = atan2f(dcm12, dcm22);
664  e->theta = -asinf(dcm02);
665  e->psi = atan2f(dcm01, dcm00);
666 }
667 
678 {
679  const float qx2 = q->qx * q->qx;
680  const float qy2 = q->qy * q->qy;
681  const float qz2 = q->qz * q->qz;
682  const float qi2 = q->qi * q->qi;
683  const float qiqx = q->qi * q->qx;
684  const float qiqy = q->qi * q->qy;
685  const float qiqz = q->qi * q->qz;
686  const float qxqy = q->qx * q->qy;
687  const float qxqz = q->qx * q->qz;
688  const float qyqz = q->qy * q->qz;
689  const float r11 = 2.f * (qxqz + qiqy);
690  const float r12 = qi2 - qx2 + qy2 + qz2;
691  const float r21 = -2.f * (qyqz - qiqx);
692  const float r31 = 2.f * (qxqy + qiqz);
693  const float r32 = qi2 - qx2 + qy2 - qz2;
694 
695  e->theta = atan2f(r11, r12);
696  e->phi = asinf(r21);
697  e->psi = atan2f(r31, r32);
698 }
699 
708 {
709  const float qx2 = q->qx * q->qx;
710  const float qy2 = q->qy * q->qy;
711  const float qz2 = q->qz * q->qz;
712  const float qi2 = q->qi * q->qi;
713  const float qiqx = q->qi * q->qx;
714  const float qiqy = q->qi * q->qy;
715  const float qiqz = q->qi * q->qz;
716  const float qxqy = q->qx * q->qy;
717  const float qxqz = q->qx * q->qz;
718  const float qyqz = q->qy * q->qz;
719  const float r11 = -2 * (qxqy - qiqz);
720  const float r12 = qi2 - qx2 + qy2 - qz2;
721  const float r21 = 2 * (qyqz + qiqx);
722  const float r31 = -2 * (qxqz - qiqy);
723  const float r32 = qi2 - qx2 - qy2 + qz2;
724 
725  e->psi = atan2f(r11, r12);
726  e->phi = asinf(r21);
727  e->theta = atan2f(r31, r32);
728 }
729 
738 bool float_mat_inv_2d(float inv_out[4], float mat_in[4])
739 {
740  float det = mat_in[0] * mat_in[3] - mat_in[1] * mat_in[2];
741 
742  if (fabsf(det) < 1e-4) { return 1; } //not invertible
743 
744  inv_out[0] = mat_in[3] / det;
745  inv_out[1] = -mat_in[1] / det;
746  inv_out[2] = -mat_in[2] / det;
747  inv_out[3] = mat_in[0] / det;
748 
749  return 0; //return success
750 }
751 
759 void float_mat2_mult(struct FloatVect2 *vect_out, float mat[4], struct FloatVect2 vect_in)
760 {
761  vect_out->x = mat[0] * vect_in.x + mat[1] * vect_in.y;
762  vect_out->y = mat[2] * vect_in.x + mat[3] * vect_in.y;
763 }
764 
765 /*
766  * 4x4 Matrix inverse.
767  * obtained from: http://rodolphe-vaillant.fr/?e=7
768  */
769 
770 static float float_mat_minor_4d(float m[16], int r0, int r1, int r2, int c0, int c1, int c2)
771 {
772  return m[4 * r0 + c0] * (m[4 * r1 + c1] * m[4 * r2 + c2] - m[4 * r2 + c1] * m[4 * r1 + c2]) -
773  m[4 * r0 + c1] * (m[4 * r1 + c0] * m[4 * r2 + c2] - m[4 * r2 + c0] * m[4 * r1 + c2]) +
774  m[4 * r0 + c2] * (m[4 * r1 + c0] * m[4 * r2 + c1] - m[4 * r2 + c0] * m[4 * r1 + c1]);
775 }
776 
777 
778 static void float_mat_adjoint_4d(float adjOut[16], float m[16])
779 {
780  adjOut[ 0] = float_mat_minor_4d(m, 1, 2, 3, 1, 2, 3);
781  adjOut[ 1] = -float_mat_minor_4d(m, 0, 2, 3, 1, 2, 3);
782  adjOut[ 2] = float_mat_minor_4d(m, 0, 1, 3, 1, 2, 3);
783  adjOut[ 3] = -float_mat_minor_4d(m, 0, 1, 2, 1, 2, 3);
784  adjOut[ 4] = -float_mat_minor_4d(m, 1, 2, 3, 0, 2, 3);
785  adjOut[ 5] = float_mat_minor_4d(m, 0, 2, 3, 0, 2, 3);
786  adjOut[ 6] = -float_mat_minor_4d(m, 0, 1, 3, 0, 2, 3);
787  adjOut[ 7] = float_mat_minor_4d(m, 0, 1, 2, 0, 2, 3);
788  adjOut[ 8] = float_mat_minor_4d(m, 1, 2, 3, 0, 1, 3);
789  adjOut[ 9] = -float_mat_minor_4d(m, 0, 2, 3, 0, 1, 3);
790  adjOut[10] = float_mat_minor_4d(m, 0, 1, 3, 0, 1, 3);
791  adjOut[11] = -float_mat_minor_4d(m, 0, 1, 2, 0, 1, 3);
792  adjOut[12] = -float_mat_minor_4d(m, 1, 2, 3, 0, 1, 2);
793  adjOut[13] = float_mat_minor_4d(m, 0, 2, 3, 0, 1, 2);
794  adjOut[14] = -float_mat_minor_4d(m, 0, 1, 3, 0, 1, 2);
795  adjOut[15] = float_mat_minor_4d(m, 0, 1, 2, 0, 1, 2);
796 }
797 
798 static float float_mat_det_4d(float m[16])
799 {
800  return m[0] * float_mat_minor_4d(m, 1, 2, 3, 1, 2, 3) -
801  m[1] * float_mat_minor_4d(m, 1, 2, 3, 0, 2, 3) +
802  m[2] * float_mat_minor_4d(m, 1, 2, 3, 0, 1, 3) -
803  m[3] * float_mat_minor_4d(m, 1, 2, 3, 0, 1, 2);
804 }
805 
812 bool float_mat_inv_4d(float invOut[16], float mat_in[16])
813 {
814  float_mat_adjoint_4d(invOut, mat_in);
815 
816  float det = float_mat_det_4d(mat_in);
817  if (fabsf(det) < 1e-4) { return 1; } //not invertible
818 
819  float inv_det = 1.0f / det;
820  int i;
821  for (i = 0; i < 16; ++i) {
822  invOut[i] = invOut[i] * inv_det;
823  }
824 
825  return 0; //success
826 }
827 
832 void float_mat_invert(float **o, float **mat, int n)
833 {
834  int i, j, k;
835  float t;
836  float a[n][2 * n];
837 
838  // Append an identity matrix on the right of the original matrix
839  for (i = 0; i < n; i++) {
840  for (j = 0; j < 2 * n; j++) {
841  if (j < n) {
842  a[i][j] = mat[i][j];
843  } else if ((j >= n) && (j == i + n)) {
844  a[i][j] = 1.0;
845  } else {
846  a[i][j] = 0.0;
847  }
848  }
849  }
850 
851  // Do the inversion
852  for (i = 0; i < n; i++) {
853  t = a[i][i]; // Store diagonal variable (temp)
854 
855  for (j = i; j < 2 * n; j++) {
856  a[i][j] = a[i][j] / t; // Divide by the diagonal value
857  }
858 
859  for (j = 0; j < n; j++) {
860  if (i != j) {
861  t = a[j][i];
862  for (k = 0; k < 2 * n; k++) {
863  a[j][k] = a[j][k] - t * a[i][k];
864  }
865  }
866  }
867  }
868 
869  // Cut out the identity, which has now moved to the left side
870  for (i = 0 ; i < n ; i++) {
871  for (j = n; j < 2 * n; j++) {
872  o[i][j - n] = a[i][j];
873  }
874  }
875 }
876 
877 /*
878  * o[n][n] = e^a[n][n]
879  * Replicates expm(a) in Matlab
880  *
881  * Adapted from the following reference:
882  * Cleve Moler, Charles VanLoan,
883  * Nineteen Dubious Ways to Compute the Exponential of a Matrix,
884  * Twenty-Five Years Later, SIAM Review, Volume 45, Number 1, March 2003, pages 3-49.
885  * https://people.sc.fsu.edu/~jburkardt/c_src/matrix_exponential/matrix_exponential.c
886  */
887 void float_mat_exp(float **a, float **o, int n)
888 {
889  float a_norm, c, t;
890  const int q = 6;
891  float d[n][n];
892  float x[n][n];
893  float a_copy[n][n];
894  int ee, k, s;
895  int p;
896 
897  MAKE_MATRIX_PTR(_a, a, n);
898  MAKE_MATRIX_PTR(_o, o, n);
899  MAKE_MATRIX_PTR(_d, d, n);
900  MAKE_MATRIX_PTR(_x, x, n);
901  MAKE_MATRIX_PTR(_a_copy, a_copy, n);
902 
903  float_mat_copy(_a_copy, _a, n, n); // Make a copy of a to compute on
904  a_norm = float_mat_norm_li(_a_copy, n, n); // Compute the infinity norm of the matrix
905  ee = (int)(float_log_n(a_norm, 2)) + 1;
906  s = Max(0, ee + 1);
907  t = 1.0 / powf(2.0, s);
908  float_mat_scale(_a_copy, t, n, n);
909  float_mat_copy(_x, _a_copy, n, n); // x = a_copy
910  c = 0.5;
911 
912  float_mat_diagonal_scal(_o, 1.0, n); // make identiy
913  float_mat_sum_scaled(_o, _a_copy, c, n, n);
914 
915  float_mat_diagonal_scal(_d, 1.0, n);
916  float_mat_sum_scaled(_d, _a_copy, -c, n, n);
917 
918  p = 1;
919  for (k = 2; k <= q; k++) {
920  c = c * (float)(q - k + 1) / (float)(k * (2 * q - k + 1));
921  float_mat_mul_copy(_x, _x, _a_copy, n, n, n);
922 
923  float_mat_sum_scaled(_o, _x, c, n, n);
924 
925  if (p) {
926  float_mat_sum_scaled(_d, _x, c, n, n);
927  } else {
928  float_mat_sum_scaled(_d, _x, -c, n, n);
929  }
930  p = !p;
931  }
932 
933  // E -> inverse(D) * E
934  float temp[n][n];
935  MAKE_MATRIX_PTR(_temp, temp, n);
936  float_mat_invert(_temp, _d, n);
937  float_mat_mul_copy(_o, _temp, _o, n, n, n);
938 
939  // E -> E^(2*S)
940  for (k = 1; k <= s; k++) {
941  float_mat_mul_copy(_o, _o, _o, n, n, n);
942  }
943 
944 }
945 
946 /* Returns L-oo of matrix a */
947 float float_mat_norm_li(float **a, int m, int n)
948 {
949  float row_sum;
950  float value;
951 
952  value = 0.0;
953  for (int i = 0; i < m; i++) {
954  row_sum = 0.0;
955  for (int j = 0; j < n; j++) {
956  row_sum = row_sum + fabsf(a[i][j]);
957  }
958  value = Max(value, row_sum);
959  }
960  return value;
961 }
void float_mat_exp(float **a, float **o, int n)
#define VECT3_CROSS_PRODUCT(_vo, _v1, _v2)
Definition: pprz_algebra.h:244
#define VECT3_DOT_PRODUCT(_v1, _v2)
Definition: pprz_algebra.h:250
void float_quat_comp_inv(struct FloatQuat *a2b, struct FloatQuat *a2c, struct FloatQuat *b2c)
Composition (multiplication) of two quaternions.
#define FLOAT_RATES_NORM(_v)
void float_rmat_inv(struct FloatRMat *m_b2a, struct FloatRMat *m_a2b)
Inverse/transpose of a rotation matrix.
void float_quat_of_eulers(struct FloatQuat *q, struct FloatEulers *e)
quat of euler roation 'ZYX'
float phi
in radians
#define MAKE_MATRIX_PTR(_ptr, _mat, _rows)
Make a pointer to a matrix of _rows lines.
void float_mat_invert(float **o, float **mat, int n)
Calculate inverse of any n x n matrix (passed as C array) o = mat^-1 Algorithm verified with Matlab...
void float_rmat_mult(struct FloatEulers *rb, struct FloatRMat *m_a2b, struct FloatEulers *ra)
rotate angle by rotation matrix.
void float_quat_comp(struct FloatQuat *a2c, struct FloatQuat *a2b, struct FloatQuat *b2c)
Composition (multiplication) of two quaternions.
static void float_mat_diagonal_scal(float **o, float v, int n)
Make an n x n identity matrix (for matrix passed as array)
void float_vect3_integrate_fi(struct FloatVect3 *vec, struct FloatVect3 *dv, float dt)
in place first order integration of a 3D-vector
static void float_mat_copy(float **a, float **b, int m, int n)
a = b
static float float_mat_det_4d(float m[16])
void float_eulers_of_rmat(struct FloatEulers *e, struct FloatRMat *rm)
float r
in rad/s
bool float_mat_inv_4d(float invOut[16], float mat_in[16])
4x4 Matrix inverse
float float_rmat_norm(struct FloatRMat *rm)
Norm of a rotation matrix.
float psi
in radians
#define VECT3_SUM_SCALED(_c, _a, _b, _s)
Definition: pprz_algebra.h:175
void float_rmat_comp_inv(struct FloatRMat *m_a2b, struct FloatRMat *m_a2c, struct FloatRMat *m_b2c)
Composition (multiplication) of two rotation matrices.
#define SQUARE(_a)
Definition: pprz_algebra.h:48
float q
in rad/s
float p
in rad/s
void float_quat_inv_comp(struct FloatQuat *b2c, struct FloatQuat *a2b, struct FloatQuat *a2c)
Composition (multiplication) of two quaternions.
void float_rmat_transp_mult(struct FloatEulers *rb, struct FloatRMat *m_b2a, struct FloatEulers *ra)
rotate angle by transposed rotation matrix.
euler angles
Roation quaternion.
void float_rmat_integrate_fi(struct FloatRMat *rm, struct FloatRates *omega, float dt)
in place first order integration of a rotation matrix
void float_quat_of_eulers_zxy(struct FloatQuat *q, struct FloatEulers *e)
quat from euler rotation 'ZXY' This rotation order is useful if you need 90 deg pitch ...
void float_rmat_of_eulers_312(struct FloatRMat *rm, struct FloatEulers *e)
float theta
in radians
void float_mat2_mult(struct FloatVect2 *vect_out, float mat[4], struct FloatVect2 vect_in)
Multiply 2D matrix with vector.
void float_rmat_vmult(struct FloatVect3 *vb, struct FloatRMat *m_a2b, struct FloatVect3 *va)
rotate 3D vector by rotation matrix.
void float_rmat_comp(struct FloatRMat *m_a2c, struct FloatRMat *m_a2b, struct FloatRMat *m_b2c)
Composition (multiplication) of two rotation matrices.
void float_rmat_transp_vmult(struct FloatVect3 *vb, struct FloatRMat *m_b2a, struct FloatVect3 *va)
rotate 3D vector by transposed rotation matrix.
Paparazzi floating point algebra.
#define RMAT_TRACE(_rm)
Definition: pprz_algebra.h:663
void float_rates_integrate_fi(struct FloatRates *r, struct FloatRates *dr, float dt)
in place first order integration of angular rates
void float_rmat_of_quat(struct FloatRMat *rm, struct FloatQuat *q)
bool float_mat_inv_2d(float inv_out[4], float mat_in[4])
2x2 matrix inverse
void float_quat_integrate(struct FloatQuat *q, struct FloatRates *omega, float dt)
in place quaternion integration with constant rotational velocity
float float_mat_norm_li(float **a, int m, int n)
static uint16_t c1
Definition: baro_MS5534A.c:203
void float_quat_vmult(struct FloatVect3 *v_out, struct FloatQuat *q, const struct FloatVect3 *v_in)
rotate 3D vector by quaternion.
static void float_quat_normalize(struct FloatQuat *q)
void float_quat_comp_inv_norm_shortest(struct FloatQuat *a2b, struct FloatQuat *a2c, struct FloatQuat *b2c)
Composition (multiplication) of two quaternions with normalization.
static void float_mat_mul_copy(float **o, float **a, float **b, int m, int n, int l)
o = a * b
void float_quat_of_rmat(struct FloatQuat *q, struct FloatRMat *rm)
Quaternion from rotation matrix.
static float renorm_factor(float n)
#define MAT33_ROW_VECT3_SMUL(_mat, _row, _vin, _s)
Definition: pprz_algebra.h:514
#define Max(x, y)
Definition: main_fbw.c:53
void float_rates_of_euler_dot(struct FloatRates *r, struct FloatEulers *e, struct FloatEulers *edot)
void float_quat_derivative(struct FloatQuat *qd, struct FloatRates *r, struct FloatQuat *q)
Quaternion derivative from rotational velocity.
float m[3 *3]
float float_rmat_reorthogonalize(struct FloatRMat *rm)
#define M_SQRT2
void float_eulers_of_quat_zxy(struct FloatEulers *e, struct FloatQuat *q)
euler rotation 'ZXY' This rotation order is useful if you need 90 deg pitch
#define VECT3_NORM2(_v)
Definition: pprz_algebra.h:252
void float_rmat_transp_ratemult(struct FloatRates *rb, struct FloatRMat *m_b2a, struct FloatRates *ra)
rotate anglular rates by transposed rotation matrix.
void float_rmat_of_eulers_321(struct FloatRMat *rm, struct FloatEulers *e)
Rotation matrix from 321 Euler angles (float).
void float_rmat_of_axis_angle(struct FloatRMat *rm, struct FloatVect3 *uv, float angle)
initialises a rotation matrix from unit vector axis and angle
#define RMAT_ELMT(_rm, _row, _col)
Definition: pprz_algebra.h:660
void float_quat_of_orientation_vect(struct FloatQuat *q, const struct FloatVect3 *ov)
Quaternion from orientation vector.
void float_quat_of_axis_angle(struct FloatQuat *q, const struct FloatVect3 *uv, float angle)
Quaternion from unit vector and angle.
static void float_quat_wrap_shortest(struct FloatQuat *q)
void float_quat_comp_norm_shortest(struct FloatQuat *a2c, struct FloatQuat *a2b, struct FloatQuat *b2c)
Composition (multiplication) of two quaternions with normalization.
void float_quat_inv_comp_norm_shortest(struct FloatQuat *b2c, struct FloatQuat *a2b, struct FloatQuat *a2c)
Composition (multiplication) of two quaternions with normalization.
static uint16_t c2
Definition: baro_MS5534A.c:203
static void float_mat_adjoint_4d(float adjOut[16], float m[16])
void float_quat_derivative_lagrange(struct FloatQuat *qd, struct FloatRates *r, struct FloatQuat *q)
Quaternion derivative from rotational velocity.
rotation matrix
static float p[2][2]
static float float_log_n(float v, float n)
void float_eulers_of_quat_yxz(struct FloatEulers *e, struct FloatQuat *q)
euler rotation 'YXZ' This function calculates from a quaternion the Euler angles with the order YXZ...
static float float_quat_norm(struct FloatQuat *q)
void float_rmat_ratemult(struct FloatRates *rb, struct FloatRMat *m_a2b, struct FloatRates *ra)
rotate anglular rates by rotation matrix.
void float_quat_differential(struct FloatQuat *q_out, struct FloatRates *w, float dt)
Delta rotation quaternion with constant angular rates.
static float float_mat_minor_4d(float m[16], int r0, int r1, int r2, int c0, int c1, int c2)
void float_eulers_of_quat(struct FloatEulers *e, struct FloatQuat *q)
euler rotation 'ZYX'
static void float_mat_sum_scaled(float **a, float **b, float k, int m, int n)
a += k*b, where k is a scalar value
void float_quat_integrate_fi(struct FloatQuat *q, struct FloatRates *omega, float dt)
in place first order quaternion integration with constant rotational velocity
angular rates
void float_quat_of_eulers_yxz(struct FloatQuat *q, struct FloatEulers *e)
quat from euler rotation 'YXZ' This function calculates a quaternion from Euler angles with the order...
static void float_mat_scale(float **a, float k, int m, int n)
a *= k, where k is a scalar value