Home | History | Annotate | Download | only in doc

Lines Matching full:scalar

35 typedef Matrix<Scalar, RowsAtCompileTime, ColsAtCompileTime, Options> MyMatrixType;
36 typedef Array<Scalar, RowsAtCompileTime, ColsAtCompileTime, Options> MyArrayType;
39 \li \c Scalar is the scalar type of the coefficients (e.g., \c float, \c double, \c bool, \c int, etc.).
143 ObjectType::Scalar ObjectType::RowsAtCompileTime
326 scalar product</td><td>\code
344 scalar = vec1.dot(vec2);
345 scalar = col1.adjoint() * col2;
346 scalar = (col1.adjoint() * col2).value();\endcode
355 scalar = vec1.norm(); scalar = vec1.squaredNorm()
397 array1 + scalar array1 - scalar array1 += scalar array1 -= scalar
400 array1 < array2 array1 > array2 array1 < scalar array1 > scalar
401 array1 <= array2 array1 >= array2 array1 <= scalar array1 >= scalar
402 array1 == array2 array1 != array2 array1 == scalar array1 != scalar
551 DiagonalMatrix<Scalar,SizeAtCompileTime> diag1(size);
566 mat3 = scalar * diag1 * mat1;
567 mat3 += scalar * mat1 * vec1.asDiagonal();
677 DiagonalMatrix<Scalar,SizeAtCompileTime> diag1(size);
707 mat3 += scalar * vec1.asDiagonal() * mat1
708 mat3 += scalar * mat1 * vec1.asDiagonal()
709 mat3.noalias() += scalar * mat1.triangularView<Xxx>() * mat2
710 mat3.noalias() += scalar * mat2 * mat1.triangularView<Xxx>()
711 mat3.noalias() += scalar * mat1.selfadjointView<Upper or Lower>() * mat2
712 mat3.noalias() += scalar * mat2 * mat1.selfadjointView<Upper or Lower>()
714 mat1.selfadjointView<Upper or Lower>().rankUpdate(mat2.adjoint(), scalar);