HomeSort by relevance Sort by last modified time
    Searched full:norm (Results 426 - 450 of 1009) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
do_plc.c 153 /* norm energies to int16_t, compute the product of the energies and
163 /* Square the cross correlation and norm it such that max_perSquare
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
Norm_Corr_neon.s 208 MOV r6, r6, ASR #16 @norm = extract_h(L_tmp)
210 ADD r12, r12, r12 @L_tmp = vo_L_mult(corr, norm)
  /frameworks/base/core/java/com/android/internal/app/procstats/
DumpUtils.java 60 "norm", "mod", "low", "crit"
130 pw.print("Norm");
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Rotation.java 171 * @exception ArithmeticException if the axis norm is zero
175 double norm = axis.getNorm(); local
176 if (norm == 0) {
181 double coeff = FastMath.sin(halfAngle) / norm;
204 * the Frobenius norm of the correction needed is above the given
211 * difference between two steps of the Frobenius norm of the
248 // which unfortunately can be zero. Since the norm of the
311 * @exception IllegalArgumentException if the norm of one of the vectors is zero
446 * @exception IllegalArgumentException if the norm of one of the vectors is zero
    [all...]
  /external/mksh/src/
check.t 1364 (echo "$1 plus norm foo ${v+'bar'} baz")
1365 (echo "$1 dash norm foo ${v-'bar'} baz")
1366 (echo "$1 eqal norm foo ${v='bar'} baz")
1367 (echo "$1 qstn norm foo ${v?'bar'} baz") 2>/dev/null || \
1368 echo "$1 qstn norm -> error"
1369 (echo "$1 PLUS norm foo ${v:+'bar'} baz")
1370 (echo "$1 DASH norm foo ${v:-'bar'} baz")
1371 (echo "$1 EQAL norm foo ${v:='bar'} baz")
1372 (echo "$1 QSTN norm foo ${v:?'bar'} baz") 2>/dev/null || \
1373 echo "$1 QSTN norm -> error
    [all...]
  /development/ndk/platforms/android-3/include/linux/
videodev.h 40 __u16 norm; member in struct:video_channel
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
LocalizedFormats.java 65 CANNOT_NORMALIZE_A_ZERO_NORM_VECTOR("cannot normalize a zero norm vector"),
300 ZERO_NORM("zero norm"),
301 ZERO_NORM_FOR_ROTATION_AXIS("zero norm for rotation axis"),
302 ZERO_NORM_FOR_ROTATION_DEFINING_VECTOR("zero norm for rotation defining vector"),
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
OpenMapRealVector.java 467 * L<sub>1</sub> norm, i.e. the sum of the absolute values of
735 double norm = getNorm();
736 if (isDefaultValue(norm)) {
742 entries.put(iter.key(), iter.value() / norm);
  /external/ceres-solver/internal/ceres/
loss_function_test.cc 75 // (where scaling makes sense) and of the squared norm
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 43 * of sparse matrices. When a column has a norm less than a given tolerance
193 * In practice, if during the factorization the norm of the column that has to be eliminated is below
378 for (int j = 0; j < n; j++) max2Norm = (max)(max2Norm, m_pmat.col(j).norm());
488 // First, the squared norm of Q((col+1):m, col)
  /external/eigen/test/eigen2/
eigen2_eigensolver.cpp 77 MatrixType normalized_eivec = eiSymmGen.eigenvectors()*eiSymmGen.eigenvectors().colwise().norm().asDiagonal().inverse();
  /external/eigen/test/
geo_alignedbox.cpp 119 VERIFY_IS_APPROX( std::sqrt( 53.0f ), box.diagonal().norm() );
nullary.cpp 64 VERIFY( (MatrixXd(RowVectorXd::LinSpaced(3, 0, 1)) - RowVector3d(0, 0.5, 1)).norm() < std::numeric_limits<Scalar>::epsilon() );
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IterationController.h 74 double m_rhsn; ///< Right hand side norm
Scaling.h 88 { // Iterate until the infinite norm of each row and column is approximately 1
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 71 chord_lengths.rightCols(n-1) = (pts.array().leftCols(n-1) - pts.array().rightCols(n-1)).matrix().colwise().norm();
  /external/eigen/unsupported/test/
autodiff.cpp 28 return (p-Vector(Scalar(-1),Scalar(1.))).norm() + (p.array() * p.array()).sum() + p.dot(p);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btVector3.java 88 public float norm() { method in class:btVector3
  /external/libvpx/libvpx/vpx_dsp/
ssim.c 304 double norm; local
440 norm = 1. / (width / 4) / (height / 4);
441 ssim_total *= norm;
442 ssim2_total *= norm;
  /external/opencv3/modules/core/src/
types.cpp 106 float c = (float)norm( p1 - p2 );
  /external/opencv3/modules/cudaarithm/src/cuda/
norm.cu 116 double cv::cuda::norm(InputArray _src1, InputArray _src2, int normType)
  /external/opencv3/modules/features2d/src/
akaze.cpp 147 // returns the default norm type
kaze.cpp 102 // returns the default norm type
  /external/opencv3/modules/imgproc/test/
test_watershed.cpp 124 if (0 != norm(markers8U, exp, NORM_INF))
  /external/opencv3/modules/java/src/
core+Core.java 703 // C++: double norm(Mat src1, int normType = NORM_L2, Mat mask = Mat())
706 //javadoc: norm(src1, normType, mask)
707 public static double norm(Mat src1, int normType, Mat mask) method in class:Core
715 //javadoc: norm(src1, normType)
716 public static double norm(Mat src1, int normType) method in class:Core
724 //javadoc: norm(src1)
725 public static double norm(Mat src1) method in class:Core
735 // C++: double norm(Mat src1, Mat src2, int normType = NORM_L2, Mat mask = Mat())
738 //javadoc: norm(src1, src2, normType, mask)
739 public static double norm(Mat src1, Mat src2, int normType, Mat mask method in class:Core
748 public static double norm(Mat src1, Mat src2, int normType) method in class:Core
757 public static double norm(Mat src1, Mat src2) method in class:Core
    [all...]

Completed in 632 milliseconds

<<11121314151617181920>>