Lines Matching refs:low
44 Scalar low = (size == 1 ? high : internal::random<Scalar>(-500,500)); in testVectorType() local
45 if (low>high) std::swap(low,high); in testVectorType()
47 const Scalar step = ((size == 1) ? 1 : (high-low)/(size-1)); in testVectorType()
51 m.setLinSpaced(size,low,high); in testVectorType()
55 n(i) = low+i*step; in testVectorType()
60 m = VectorType::LinSpaced(size,low,high); in testVectorType()
71 m = VectorType::LinSpaced(Sequential,size,low,high); in testVectorType()
81 row_vector.setLinSpaced(size,low,high); in testVectorType()
82 col_vector.setLinSpaced(size,low,high); in testVectorType()
88 size_changer.setLinSpaced(size,low,high); in testVectorType()
93 scalar.setLinSpaced(1,low,high); in testVectorType()
95 VERIFY_IS_APPROX( ScalarMatrix::LinSpaced(1,low,high), ScalarMatrix::Constant(high) ); in testVectorType()
99 m.tail(size-1).setLinSpaced(low, high); in testVectorType()