代码搜索:same

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

代码结果 10,000
www.eeworm.com/read/425793/10322506

m cmpmatrix.m

function flag=cmpmatrix(a,b) % cmpmatrix function % 用于确定两个矩阵维数是否相等的比较函数 % Copyright 2000-2001 ECUST. % $Revision: 1.1 $ $Date: 2002/02/11 21:58:12 $ if any(any(a~=b)), flag='matrix i
www.eeworm.com/read/425793/10322528

m cmpmatrix1.m

function flag=cmpmatrix1(a,b) % 用于确定两个矩阵维数是否相等的比较函数 % Copyright 2000-2001 ECUST. % $Revision: 1.1 $ $Date: 2002/02/11 22:05:12 $ [r1,s1]=size(a);[r2,s2]=size(b); if (r1~=r2) | (s1~=s2),
www.eeworm.com/read/353075/10472950

c double1.c

// This program configures the General Programmable Interface (GPIF) for FX2. // Please do not modify sections of text which are marked as "DO NOT EDIT ...". //
www.eeworm.com/read/353075/10473105

lst aa.lst

C51 COMPILER V7.10 AA 10/03/2005 21:04:09 PAGE 1 C51 COMPILER V7.10, COMPILATION OF MODULE AA OBJECT MODULE PLACED IN aa.O
www.eeworm.com/read/353075/10473384

lst single.lst

C51 COMPILER V7.10 SINGLE 10/04/2005 20:45:22 PAGE 1 C51 COMPILER V7.10, COMPILATION OF MODULE SINGLE OBJECT MODULE PLACED IN
www.eeworm.com/read/353075/10473556

lst double1.lst

C51 COMPILER V7.10 DOUBLE1 10/04/2005 20:36:59 PAGE 1 C51 COMPILER V7.10, COMPILATION OF MODULE DOUBLE1 OBJECT MODULE PLACED IN
www.eeworm.com/read/348596/10881984

txt 1703.txt

#include"stdio.h" #include"memory.h" long diff[100010]; long same[100010]; long stack[100010]; void swap(long &a,long &b) {long c=a;a=b;b=c;} int main() {long i,a,b,n,m; int tt; char c
www.eeworm.com/read/418779/10903442

txt 527.txt

Rule: -- Sid: 527 -- Summary: This event is generated when traffic on the network is using the same source and destination IP address. -- Impact: Possible Denial of Service. -- Detailed Informati
www.eeworm.com/read/417657/10981207

m findenergy.m

function Emean=findEnergy(x) % FINDENERGY creates an gradient img from a given RGB or grayscale image. % The vertical and horizontal gradients are found using a Sobel operator % and the gradient ma
www.eeworm.com/read/271693/10983729

m mod_.m

function z = mod_(x,y) % Does the same as the MATLAB mod function, but this one is correct (hopefully) % Check for nonreal arguments. if ~isreal(x) | ~isreal(y) error('Arguments must be re