mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fixed output of complex matrices
This commit is contained in:
committed by
Antonio Sánchez
parent
f612df2736
commit
c0a889890f
@@ -101,7 +101,7 @@ namespace internal
|
||||
template<typename Scalar>
|
||||
inline void putVectorElt(std::complex<Scalar> value, std::ofstream& out)
|
||||
{
|
||||
out << value.real << " " << value.imag()<< "\n";
|
||||
out << value.real() << " " << value.imag()<< "\n";
|
||||
}
|
||||
|
||||
} // end namespace internal
|
||||
|
||||
Reference in New Issue
Block a user