代码搜索:does

找到约 10,000 项符合「does」的源代码

代码结果 10,000
www.eeworm.com/read/326313/13148479

m nullspace.m

function Z = nullspace(A) % NULLSPACE -- find nullspace of a matrix % % Z = nullspace(A) % % This does essentially the same thing as the Matlab system % routine NULL, except it uses t
www.eeworm.com/read/326313/13148502

m display.m

function display(S) % DISPLAY -- display function for symbolic matrices % % S % display(S) % % This function does not need to be called by the user. Just typing % the name of a
www.eeworm.com/read/241361/13152374

c sigactdemo.c

/* sigactdemo.c * purpose: shows use of sigaction() * feature: blocks ^\ while handling ^C * does not reset ^C handler, so two kill */ #include
www.eeworm.com/read/323118/13354392

readme

Directory ../SubsetSelection Contents forwardSelect.m Does forward subset selection with (optionally) OLS, ridge regression (fixed or variable lambda) and a choice of stopping crit
www.eeworm.com/read/136766/13362009

m haarapprox.m

function HaarApprox(normalization, save) % HaarApprox(normalization, save) does a Haar wavelet decomposition of a % simple function, and plots the scaling function and wavelet coefficients. % The nor
www.eeworm.com/read/319910/13439726

doc log-perd.doc

INSTRUCTIONS FOR USING THE LOG-PERIODIC DIPOLE ARRAY DESIGN PROGRAM Note: This document should be viewed from an editor which does not use proportional fonts such as
www.eeworm.com/read/318852/13470315

pas uxlssst1.pas

//This unit is now obsoleted by UXlsSST. //It does the same, but using objects instead of records. unit UXlsSST; interface uses UXlsBaseRecordLists, UXlsBaseRecords, UXlsOtherRecords, XLSMessa
www.eeworm.com/read/318008/13490599

m cc.m

function cc % The function CC does the commands: % close all ==> removes all figures % clear functions ==> removes compiled .M files %%%%%%%%%%%%%%%%%%%%% cc.m %%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/315921/13534872

l ch1-02.l

%{ /* * this sample demonstrates (very) simple recognition: * a verb/not a verb. */ %} %% [\t ]+ /* ignore white space */ ; is | am | are | were | was | be | being | been | do | does | did | wi
www.eeworm.com/read/315460/13542088

c remcom.c

/* * File: remcom.c * -------------- * This program eliminates comments from a file. This version * does not ignore comments that appear in a string constant; * that change is left to the reader