代码搜索:Built-In
找到约 2,787 项符合「Built-In」的源代码
代码结果 2,787
www.eeworm.com/read/373250/9467740
m myrepmat.m
function T = myrepmat(T, sizes)
% MYREPMAT Like the built-in repmat, except myrepmat(T,n) == repmat(T,[n 1])
% T = myrepmat(T, sizes)
if length(sizes)==1
T = repmat(T, [sizes 1]);
else
T =
www.eeworm.com/read/362688/9986647
cpp pass.cpp
// Pass.cpp
// Definitions for built-in wipe methods
//
// Eraser. Secure data removal. For Windows.
// Copyright
www.eeworm.com/read/362231/10011631
txt md5_1.txt
MD5(1) USER COMMANDS MD5(1)
NAME
md5 - calculate a message-digest fingerprint (checksum) for
a file
SYNOPSIS
md5 [ -t | -x | -s
www.eeworm.com/read/362231/10011642
1 md5.1
.TH MD5 1 "Feb 14, 1994"
.SH NAME
md5 \- calculate a message-digest fingerprint (checksum) for a file
.SH SYNOPSIS
.B md5
[ -t | -x | -sstring | filename(s) ]
.SH DESCRIPTION
.B md5
takes as i
www.eeworm.com/read/166306/10024432
m inv.m
%求逆矩阵
%用法 B=inv(A) 其中A为数值或符号方阵,B返回A的逆
%例如
% inv([1 2;3 4]) %数值
% syms a b c d;inv([[a,b;c,d]) %符号
%
%INV Matrix inverse.
% INV(X) is the inverse of the square
www.eeworm.com/read/359005/10171595
m fuzblockmask.m
function fis = fuzblockmask(CB,fis)
%FUZBLOCKMASK Initialize Mask for Fuzzy block.
%
% This function is meant to be called by the Fuzzy Block mask.
%
% See also FUZBLOCK.
% Authors: P. Ga
www.eeworm.com/read/358694/10181613
m inv.m
%求逆矩阵
%用法 B=inv(A) 其中A为数值或符号方阵,B返回A的逆
%例如
% inv([1 2;3 4]) %数值
% syms a b c d;inv([[a,b;c,d]) %符号
%
%INV Matrix inverse.
% INV(X) is the inverse of the square
www.eeworm.com/read/425546/10348675
m mysize.m
function sz = mysize(M)
% MYSIZE Like the built-in size, except it returns n if M is a vector of length n, and 1 if M is a scalar.
% sz = mysize(M)
%
% The behavior is best explained by examples
www.eeworm.com/read/425546/10348723
m isemptycell.m
function E = isemptycell(C)
% ISEMPTYCELL Apply the isempty function to each element of a cell array
% E = isemptycell(C)
%
% This is equivalent to E = cellfun('isempty', C),
% where cellfun is a
www.eeworm.com/read/425546/10348732
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)