Searched defs:diag (Results 1 - 25 of 74) sorted by relevance

123

/external/clang/include/clang/AST/
H A DASTDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
H A DCommentDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/clang/include/clang/Analysis/
H A DAnalysisDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/clang/include/clang/Basic/
H A DDiagnosticCategories.h14 namespace diag { namespace in namespace:clang
23 } // end namespace diag
/external/clang/include/clang/Driver/
H A DDriverDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/clang/include/clang/Frontend/
H A DFrontendDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/clang/include/clang/Lex/
H A DLexDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/clang/include/clang/Parse/
H A DParseDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/clang/include/clang/Sema/
H A DSemaDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/clang/include/clang/Serialization/
H A DSerializationDiagnostic.h16 namespace diag { namespace in namespace:clang
25 } // end namespace diag
/external/eigen/doc/snippets/
H A DTridiagonalization_diagonal.cpp10 VectorXd diag = triOfA.diagonal(); variable
11 cout << "The diagonal is:" << endl << diag << endl;
/external/cblas/testing/
H A Dauxiliary.c25 void get_diag_type(char *type, enum CBLAS_DIAG *diag) { argument
27 *diag = CblasUnit;
29 *diag = CblasNonUnit;
30 else *diag = UNDEFINED;
H A Dc_dblas3.c239 enum CBLAS_DIAG diag; local
245 get_diag_type(diagn,&diag);
268 cblas_dtrmm(CblasRowMajor, side, uplo, trans, diag, *m, *n, *alpha,
277 cblas_dtrmm(CblasColMajor, side, uplo, trans, diag, *m, *n, *alpha,
280 cblas_dtrmm(UNDEFINED, side, uplo, trans, diag, *m, *n, *alpha,
290 enum CBLAS_DIAG diag; local
296 get_diag_type(diagn,&diag);
319 cblas_dtrsm(CblasRowMajor, side, uplo, trans, diag, *m, *n, *alpha,
328 cblas_dtrsm(CblasColMajor, side, uplo, trans, diag, *m, *n, *alpha,
331 cblas_dtrsm(UNDEFINED, side, uplo, trans, diag, *
[all...]
H A Dc_sblas3.c236 enum CBLAS_DIAG diag; local
242 get_diag_type(diagn,&diag);
265 cblas_strmm(CblasRowMajor, side, uplo, trans, diag, *m, *n, *alpha,
274 cblas_strmm(CblasColMajor, side, uplo, trans, diag, *m, *n, *alpha,
277 cblas_strmm(UNDEFINED, side, uplo, trans, diag, *m, *n, *alpha,
287 enum CBLAS_DIAG diag; local
293 get_diag_type(diagn,&diag);
316 cblas_strsm(CblasRowMajor, side, uplo, trans, diag, *m, *n, *alpha,
325 cblas_strsm(CblasColMajor, side, uplo, trans, diag, *m, *n, *alpha,
328 cblas_strsm(UNDEFINED, side, uplo, trans, diag, *
[all...]
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dqrsolv.h11 const Matrix< Scalar, Dynamic, 1 > &diag,
43 if (diag[l] == 0.)
46 sdiag[j] = diag[l];
7 qrsolv( Matrix< Scalar, Dynamic, Dynamic > &s, const VectorXi &ipvt, const Matrix< Scalar, Dynamic, 1 > &diag, const Matrix< Scalar, Dynamic, 1 > &qtb, Matrix< Scalar, Dynamic, 1 > &x, Matrix< Scalar, Dynamic, 1 > &sdiag) argument
H A Ddogleg.h8 const Matrix< Scalar, Dynamic, 1 > &diag,
29 eigen_assert(n==diag.size());
47 qnorm = diag.cwiseProduct(x).stableNorm();
59 wa1[j] /= diag[j];
72 wa1.array() /= (diag*gnorm).array();
6 dogleg( const Matrix< Scalar, Dynamic, Dynamic > &qrfac, const Matrix< Scalar, Dynamic, 1 > &diag, const Matrix< Scalar, Dynamic, 1 > &qtb, Scalar delta, Matrix< Scalar, Dynamic, 1 > &x) argument
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMpar.h22 const VectorType &diag,
52 eigen_assert(n==diag.size());
73 wa2 = diag.cwiseProduct(x);
86 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2)/dxnorm;
94 wa1[j] = s.col(j).head(j+1).dot(qtb.head(j+1)) / diag[qr.colsPermutation().indices()(j)];
115 wa1 = sqrt(par)* diag;
120 wa2 = diag.cwiseProduct(x);
132 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2/dxnorm);
20 lmpar2( const QRSolver &qr, const VectorType &diag, const VectorType &qtb, typename VectorType::Scalar m_delta, typename VectorType::Scalar &par, VectorType &x) argument
H A DLMqrsolv.h26 const Matrix<Scalar,Dynamic,1> &diag,
56 if (diag[l] == 0.)
59 sdiag[j] = diag[l];
106 const Matrix<Scalar,Dynamic,1> &diag,
132 if (diag(l) == Scalar(0))
135 sdiag[j] = diag[l];
23 lmqrsolv( Matrix<Scalar,Rows,Cols> &s, const PermutationMatrix<Dynamic,Dynamic,Index> &iPerm, const Matrix<Scalar,Dynamic,1> &diag, const Matrix<Scalar,Dynamic,1> &qtb, Matrix<Scalar,Dynamic,1> &x, Matrix<Scalar,Dynamic,1> &sdiag) argument
103 lmqrsolv( SparseMatrix<Scalar,_Options,Index> &s, const PermutationMatrix<Dynamic,Dynamic> &iPerm, const Matrix<Scalar,Dynamic,1> &diag, const Matrix<Scalar,Dynamic,1> &qtb, Matrix<Scalar,Dynamic,1> &x, Matrix<Scalar,Dynamic,1> &sdiag) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DLevenbergMarquardtEstimator.java176 * This bound is set to the product of initialStepBoundFactor and the euclidean norm of diag*x if nonzero,
264 double[] diag = new double[cols];
305 diag[k] = dk;
337 diag[j] = FastMath.max(diag[j], jacNorm[j]);
354 determineLMParameter(oldRes, delta, diag, work1, work2, work3);
362 double s = diag[pj] * lmDir[pj];
427 double xK = diag[k] * parameters[k].getEstimate();
492 * @param diag diagonal matrix
497 private void determineLMParameter(double[] qy, double delta, double[] diag, argument
672 determineLMDirection(double[] qy, double[] diag, double[] lmDiag, double[] work) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DLevenbergMarquardtOptimizer.java185 * norm of diag*x if nonzero, or else to initialStepBoundFactor itself. In most
257 double[] diag = new double[cols];
305 diag[k] = dk;
338 diag[j] = FastMath.max(diag[j], jacNorm[j]);
358 determineLMParameter(qtf, delta, diag, work1, work2, work3);
366 double s = diag[pj] * lmDir[pj];
428 double xK = diag[k] * point[k];
499 * @param diag diagonal matrix
504 private void determineLMParameter(double[] qy, double delta, double[] diag, argument
673 determineLMDirection(double[] qy, double[] diag, double[] lmDiag, double[] work) argument
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_pivotL.h76 Index diag = emptyIdxLU; local
86 if (lsub_ptr[isub] == diagind) diag = isub;
102 if (diag >= 0 )
106 rtemp = abs(lu_col_ptr[diag]);
107 if (rtemp != 0.0 && rtemp >= thresh) pivptr = diag;
/external/eigen/blas/f2c/
H A Dctbmv.c15 /* Subroutine */ int ctbmv_(char *uplo, char *trans, char *diag, integer *n, argument
198 } else if (! lsame_(diag, "U", (ftnlen)1, (ftnlen)1) && ! lsame_(diag,
222 nounit = lsame_(diag, "N", (ftnlen)1, (ftnlen)1);
H A Ddtbmv.c15 /* Subroutine */ int dtbmv_(char *uplo, char *trans, char *diag, integer *n, argument
194 } else if (! lsame_(diag, "U", (ftnlen)1, (ftnlen)1) && ! lsame_(diag,
217 nounit = lsame_(diag, "N", (ftnlen)1, (ftnlen)1);
H A Dstbmv.c15 /* Subroutine */ int stbmv_(char *uplo, char *trans, char *diag, integer *n, argument
194 } else if (! lsame_(diag, "U", (ftnlen)1, (ftnlen)1) && ! lsame_(diag,
217 nounit = lsame_(diag, "N", (ftnlen)1, (ftnlen)1);
H A Dztbmv.c15 /* Subroutine */ int ztbmv_(char *uplo, char *trans, char *diag, integer *n, argument
198 } else if (! lsame_(diag, "U", (ftnlen)1, (ftnlen)1) && ! lsame_(diag,
222 nounit = lsame_(diag, "N", (ftnlen)1, (ftnlen)1);

Completed in 524 milliseconds

123