| 294 | /** Initializes a identity matrix of size SizeAtCompileTime */ |
| 295 | EIGEN_DEVICE_FUNC |
| 296 | static const InitializeReturnType Identity() { return DiagonalVectorType::Ones().asDiagonal(); } |
| 297 | /** Initializes a identity matrix of size dim */ |
| 298 | EIGEN_DEVICE_FUNC |
| 299 | static const InitializeReturnType Identity(Index size) { return DiagonalVectorType::Ones(size).asDiagonal(); } |
nothing calls this directly
no test coverage detected