Matx::solve for right part 1col does not exist (Bug #1376)
Description
Partial template instance
Matx<_Tp, n, 1> solve(const Matx<_Tp, m, 1>& rhs, int method) const;
declared at line 495 core.hpp
has no definition, so linker raises an error.
I have commented this line, so it begin working.
Associated revisions
added Vec Matx::solve(Vec) (ticket #1376)
Merge pull request #1376 from StevenPuttemans:bugfix_3186
Revert "Merge pull request #1376 from StevenPuttemans:bugfix_3186"
This reverts commit 41b8479d039bb0ecc36627ae50349b6fcd5e16e3, reversing
changes made to 531471b0aa4b4e8f9fcab8282d5cbe895b77e6e0.
Reason: breaks the build.
History
Updated by Alexander Shishkov almost 13 years ago
- Target version deleted ()
Updated by Alexander Shishkov almost 13 years ago
- Assignee deleted (
Vadim Pisarevsky)
Updated by Vadim Pisarevsky almost 13 years ago
thanks! Actually, that
Matx<_Tp, n, 1> solve(const Matx<_Tp, m, 1>& rhs, int method) const;
was meant to be a more useful
Vec<_Tp, n> solve(const Vec<_Tp, m>& rhs, int method) const;
I fixed it in SVN trunk, r7702.
- Status changed from Open to Done
- Assignee set to Vadim Pisarevsky
Updated by Alexander Shishkov almost 13 years ago
- Target version set to 2.4.0