代码搜索:checking
找到约 6,492 项符合「checking」的源代码
代码结果 6,492
www.eeworm.com/read/373250/9467568
m is_psd.m
function b = positive_semidefinite(M)
%
% Return true iff v M v' >= 0 for any vector v.
% We do this by checking that all the eigenvalues are non-negative.
E = eig(M);
if length(find(E>=0)) ==
www.eeworm.com/read/168814/9896987
log config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.59. I
www.eeworm.com/read/425546/10348819
m is_psd.m
function b = positive_semidefinite(M)
%
% Return true iff v M v' >= 0 for any vector v.
% We do this by checking that all the eigenvalues are non-negative.
E = eig(M);
if length(find(E>=0)) ==
www.eeworm.com/read/275970/10780266
in configure.in
AC_INIT(strace.c)
AC_CANONICAL_HOST()
AC_MSG_CHECKING(for supported operating system)
changequote(,)dnl
case "$host_os" in
linux*)
opsys=linux
;;
sunos4*)
opsys=sunos4
;;
solaris2*)
opsys=svr4
www.eeworm.com/read/349646/10808706
m is_psd.m
function b = positive_semidefinite(M)
%
% Return true iff v M v' >= 0 for any vector v.
% We do this by checking that all the eigenvalues are non-negative.
E = eig(M);
if length(find(E>=0)) ==
www.eeworm.com/read/349646/10809693
m is_psd.m
function b = positive_semidefinite(M)
%
% Return true iff v M v' >= 0 for any vector v.
% We do this by checking that all the eigenvalues are non-negative.
E = eig(M);
if length(find(E>=0)) ==
www.eeworm.com/read/470126/6924903
c smse.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/469416/6976239
m is_psd.m
function b = positive_semidefinite(M)
%
% Return true iff v M v' >= 0 for any vector v.
% We do this by checking that all the eigenvalues are non-negative.
E = eig(M);
if length(find(E>=0)) ==
www.eeworm.com/read/143387/12880301
ac configure.ac
#
# The build process allows for using a cross-compiler. But the default
# action is to target the same platform that we are running on. The
# configure script needs to discover the following proper
www.eeworm.com/read/244008/12899522
cpp f1210.cpp
//=====================================
// f1210.cpp
// Inheriting for Reducing Verbose Code
//=====================================
#include
#include
using namespace std;
#incl