Home | History | Annotate | Download | only in Imath

Lines Matching full:real

52 // Find the real solutions of a linear, quadratic or cubic equation:
63 // 3 three real solutions, stored in x[0], x[1] and x[2]
64 // 2 two real solutions, stored in x[0] and x[1]
65 // 1 one real solution, stored in x[1]
66 // 0 no real solutions
67 // -1 all real numbers are solutions
71 // * It is possible that an equation has real solutions, but that the
79 // only real solutions are produced, some intermediate results are
183 x[0] = y0.real() - r / 3;
188 x[0] = y0.real() - r / 3;
189 x[1] = y1.real() - r / 3;
194 x[0] = y0.real() - r / 3;
195 x[1] = y1.real() - r / 3;
196 x[2] = y2.real() - r / 3;