forked from Archive/PX4-Autopilot
Mathlib: Fix to matrix division operator
This commit is contained in:
parent
3a47434749
commit
32ae3026be
|
@ -285,7 +285,7 @@ public:
|
|||
|
||||
for (unsigned int i = 0; i < M; i++)
|
||||
for (unsigned int j = 0; j < N; j++)
|
||||
res[i][j] = data[i][j] / num;
|
||||
res.data[i][j] = data[i][j] / num;
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue