@@ -1661,8 +1661,8 @@ bool named_plot(const std::string& name, const std::vector<Numeric>& y, const st
1661
1661
return res;
1662
1662
}
1663
1663
1664
- template <typename Numeric >
1665
- bool named_plot (const std::string& name, const std::vector<Numeric >& x, const std::vector<Numeric >& y, const std::string& format = " " )
1664
+ template <typename NumericX, typename NumericY >
1665
+ bool named_plot (const std::string& name, const std::vector<NumericX >& x, const std::vector<NumericY >& y, const std::string& format = " " )
1666
1666
{
1667
1667
detail::_interpreter::get ();
1668
1668
@@ -1688,8 +1688,8 @@ bool named_plot(const std::string& name, const std::vector<Numeric>& x, const st
1688
1688
return res;
1689
1689
}
1690
1690
1691
- template <typename Numeric >
1692
- bool named_semilogx (const std::string& name, const std::vector<Numeric >& x, const std::vector<Numeric >& y, const std::string& format = " " )
1691
+ template <typename NumericX, typename NumericY >
1692
+ bool named_semilogx (const std::string& name, const std::vector<NumericX >& x, const std::vector<NumericY >& y, const std::string& format = " " )
1693
1693
{
1694
1694
detail::_interpreter::get ();
1695
1695
@@ -1715,8 +1715,8 @@ bool named_semilogx(const std::string& name, const std::vector<Numeric>& x, cons
1715
1715
return res;
1716
1716
}
1717
1717
1718
- template <typename Numeric >
1719
- bool named_semilogy (const std::string& name, const std::vector<Numeric >& x, const std::vector<Numeric >& y, const std::string& format = " " )
1718
+ template <typename NumericX, typename NumericY >
1719
+ bool named_semilogy (const std::string& name, const std::vector<NumericX >& x, const std::vector<NumericY >& y, const std::string& format = " " )
1720
1720
{
1721
1721
detail::_interpreter::get ();
1722
1722
@@ -1742,8 +1742,8 @@ bool named_semilogy(const std::string& name, const std::vector<Numeric>& x, cons
1742
1742
return res;
1743
1743
}
1744
1744
1745
- template <typename Numeric >
1746
- bool named_loglog (const std::string& name, const std::vector<Numeric >& x, const std::vector<Numeric >& y, const std::string& format = " " )
1745
+ template <typename NumericX, typename NumericY >
1746
+ bool named_loglog (const std::string& name, const std::vector<NumericX >& x, const std::vector<NumericY >& y, const std::string& format = " " )
1747
1747
{
1748
1748
detail::_interpreter::get ();
1749
1749
0 commit comments