equal
deleted
inserted
replaced
74 |
74 |
75 ///Substitute the value u into the polinomial. |
75 ///Substitute the value u into the polinomial. |
76 ///The calculation will be done using type \c R. |
76 ///The calculation will be done using type \c R. |
77 ///The following examples shows the usage of the template parameter \c R. |
77 ///The following examples shows the usage of the template parameter \c R. |
78 ///\code |
78 ///\code |
79 /// Polynomial<xy<double> > line(1); |
79 /// Polynomial<dim2::Point<double> > line(1); |
80 /// line[0]=xy<double>(12,25); |
80 /// line[0]=dim2::Point<double>(12,25); |
81 /// line[1]=xy<double>(2,7); |
81 /// line[1]=dim2::Point<double>(2,7); |
82 /// ... |
82 /// ... |
83 /// xy<double> d = line.subst<xy<double> >(23.2); |
83 /// dim2::Point<double> d = line.subst<dim2::Point<double> >(23.2); |
84 ///\endcode |
84 ///\endcode |
85 /// |
85 /// |
86 ///\code |
86 ///\code |
87 /// Polynomial<double> p; |
87 /// Polynomial<double> p; |
88 /// Polynomial<double> q; |
88 /// Polynomial<double> q; |