代码搜索:Built-In

找到约 2,787 项符合「Built-In」的源代码

代码结果 2,787
www.eeworm.com/read/358827/10178435

m do_csplines.m

%do_csplines.m KC = 1; dy0 = 2; dyN = 2; % with specified 1st derivatives on boundary x = [0 1 2 3]; y = [0 1 4 5]; xi = x(1)+[0:200]*(x(end)-x(1))/200; %intermediate points [yi,S] = cspline(x,y,xi,KC
www.eeworm.com/read/200336/10247242

m fairmax.m

function [val, idx] = fairmax(x) %FAIRMAX Same as built-in max(), except breaks ties randomly. % [val, idx] = fairmax(x) takes a vector as an argument and returns % the same output as the built
www.eeworm.com/read/162415/10307444

m minimax.m

%MINIMAX Minimax optimization % % x=minimax('f',x0,options,'g') finds the value of x for which % the maximal output of f(x) is minimal. % options is optional, giving the optimization arguments. If
www.eeworm.com/read/162415/10307456

m fmin.m

%FMIN Find minimum of f(x) % % x=fmin('f',xlow,xhigh,options) finds the value of x for which f(x) is % minimal in the range [xlow,xhigh]. % options is optional, giving the optimization arguments.
www.eeworm.com/read/162415/10307485

m fmins.m

%FMINS Find minimum of f(x1,x2,...) % % x=fmins('f',x0,options) finds the value of vector x near x0 % for which f(x) is minimal. % options is optional, giving the optimization arguments. If optio
www.eeworm.com/read/353831/10414874

m fairmax.m

function [val, idx] = fairmax(x) %FAIRMAX Same as built-in max(), except breaks ties randomly. % [val, idx] = fairmax(x) takes a vector as an argument and returns % the same output as the built
www.eeworm.com/read/424509/10441616

bak hardcfg.h.bak

/********************************************************************* AtFlash 相关宏定义以及硬件描述 **********************************************************************/ #define READ_MEMPAGE 0x52
www.eeworm.com/read/275729/10798321

h config.h

/* * * C++ Portable Types Library (PTypes) * Version 1.7.5 Released 9-Mar-2003 * * Copyright (c) 2001, 2002, 2003 Hovik Melikyan * * http://www.melikyan.com/ptypes/ * http://ptypes.sour
www.eeworm.com/read/349479/10825254

m fairmax.m

function [val, idx] = fairmax(x) %FAIRMAX Same as built-in max(), except breaks ties randomly. % [val, idx] = fairmax(x) takes a vector as an argument and returns % the same output as the built
www.eeworm.com/read/417350/10993274

txt 06-46.txt

例6- 46 矩阵的扩充。 >> A1=zeros(2,4) A1 = 0 0 0 0 0 0 0 0 >> A2=ones(2) A2 = 1 1 1 1 >> A3=ones(1,2) A3 = 1 1 >> A4=zeros(1,2) A4 =