代码搜索:Built-In
找到约 2,787 项符合「Built-In」的源代码
代码结果 2,787
www.eeworm.com/read/13871/284385
m myones.m
function T = myones(sizes)
% MYONES Like the built-in ones, except myones(k) produces a k*1 vector instead of a k*k matrix,
% T = myones(sizes)
if length(sizes)==0
T = 1;
elseif length(sizes)
www.eeworm.com/read/16793/691609
1 bash.1
.\"
.\" MAN PAGE COMMENTS to
.\"
.\" Chet Ramey
.\" Case Western Reserve University
.\" chet@po.cwru.edu
.\"
.\" Last Change: Tue Dec 28 13:41:43 EST 2010
.\"
.\" bash_builtins, strip all but Built-In
www.eeworm.com/read/470720/1445232
c builtins7.c
// Test that built-in functions are recognized with a prototype.
// Origin: Roger Sayle Mar 20, 2002
// Copyright (C) 2002 Free Software Foundation.
//
// Special g++ Options: -O2
extern "C" void li
www.eeworm.com/read/470720/1445298
c builtins6.c
// Test that built-in functions are recognized with a prototype.
// Origin: Roger Sayle Mar 20, 2002
// Copyright (C) 2002 Free Software Foundation.
//
// Special g++ Options: -O2
typedef __SIZE_TYP
www.eeworm.com/read/470720/1445346
c builtins8.c
// Test that built-in functions are recognized with a prototype.
// Origin: Roger Sayle Mar 20, 2002
// Copyright (C) 2002 Free Software Foundation.
//
// Special g++ Options: -O2
extern "C" void l
www.eeworm.com/read/470693/1457178
c builtins7.c
// Test that built-in functions are recognized with a prototype.
// Origin: Roger Sayle Mar 20, 2002
// Copyright (C) 2002 Free Software Foundation.
//
// Special g++ Options: -O2
extern "C" void li
www.eeworm.com/read/470693/1457244
c builtins6.c
// Test that built-in functions are recognized with a prototype.
// Origin: Roger Sayle Mar 20, 2002
// Copyright (C) 2002 Free Software Foundation.
//
// Special g++ Options: -O2
typedef __SIZE_TYP
www.eeworm.com/read/470693/1457292
c builtins8.c
// Test that built-in functions are recognized with a prototype.
// Origin: Roger Sayle Mar 20, 2002
// Copyright (C) 2002 Free Software Foundation.
//
// Special g++ Options: -O2
extern "C" void l
www.eeworm.com/read/457216/1599776
m bwblkslvfun.m
% BWBLKSLV Solves block sparse upper-triangular system.
% y = bwblkslv(L,b) yields the same result as
% y(L.perm,:) = L.L'\b
% However, BWBLKSLV is faster than the built-in operator
www.eeworm.com/read/457216/1599780
m fwblkslvfun.m
% FWBLKSLV Solves block sparse upper-triangular system.
% y = fwblkslv(L,b) yields the same result as
% y = L.L\b(L.perm,:)
% However, FWBLKSLV is faster than the built-in operator