Searched refs:matrixToString (Results 1 – 1 of 1) sorted by relevance
/frameworks/native/libs/input/ |
D | VelocityTracker.cpp | 81 static std::string matrixToString(const float* a, uint32_t m, uint32_t n, bool rowMajor) { in matrixToString() function 462 ALOGD(" - a=%s", matrixToString(&a[0][0], m, n, false /*rowMajor*/).c_str()); in solveLeastSquares() 497 ALOGD(" - q=%s", matrixToString(&q[0][0], m, n, false /*rowMajor*/).c_str()); in solveLeastSquares() 498 ALOGD(" - r=%s", matrixToString(&r[0][0], n, n, true /*rowMajor*/).c_str()); in solveLeastSquares() 510 ALOGD(" - qr=%s", matrixToString(&qr[0][0], m, n, false /*rowMajor*/).c_str()); in solveLeastSquares()
|