代码搜索:Difference
找到约 3,389 项符合「Difference」的源代码
代码结果 3,389
www.eeworm.com/read/115272/6119316
c test23.c
/*
* duplicate xmcd's checkbox.
* OH, WOE IS ME, THE ORDER OF OPERATIONS MAKES A HUGE DIFFERENCE IN MOTIF
* BUT NOT IN LESSTIF. Sigh -- we're more predictable??!?
*/
#include
#include
www.eeworm.com/read/185477/6336876
h stdlib.h
/* Standard utility functions */
#ifndef _STDDEF
typedef int ptrdiff_t; /* result type of pointer difference */
typedef unsigned size_t; /* type yielded by sizeof */
typedef unsigned short wch
www.eeworm.com/read/492812/6409987
c two_tones.c
//two_tones.c Generates/adds two tones using difference equations
short sinegen(void); //for generating tone
short output; //for output
short sinegen_buffer[256]; //buffer for out
www.eeworm.com/read/409871/11309383
txt 3-436msg2.txt
Subject: re : 3 . 427 innateness
joe stemberger write : > i ' ve never understand why it make any difference at all to linguistic > theory whether highly language-specific information be innate or no
www.eeworm.com/read/261198/11659758
m mysymsetdiff.m
function C = mysymsetdiff(A,B)
% MYSYMSETDIFF Symmetric set difference of two sets of positive integers (much faster than built-in setdiff)
% C = mysetdiff(A,B)
% C = (A\B) union (B\A) = { things that
www.eeworm.com/read/338643/12290820
m xypc2rss.m
% xypc2rss.m
% Scope: This MATLAB program plots a x-y graph for root sum square (RSS) of
% three specified columns from the difference of two ASCII data file
www.eeworm.com/read/123946/14605548
m fadj.m
function [upper,lower]=fadj(w,f)
%FADJ Estimates the order of a pseudo-decoupling pre-compensator
% [UPPER,LOWER]=FADJ(W,F) estimates the difference in the
% orders of the pre-compens
www.eeworm.com/read/212384/15156774
txt readme.txt
LOCALNORMALIZE A local normalization algorithm that reduces the difference of the illumination.
ln=localnormalize(IM,sigma1,sigma2) outputs local normalization effect of
image IM using local mean
www.eeworm.com/read/212384/15156778
m contraststretchnorm.m
function [array_out] = ContrastStretchNorm(array_in, low_thr, high_thr)
%
% Stretches contrast on the image and normalize image from 0 to 1
% The main difference of this function to the standard s
www.eeworm.com/read/207217/15279413
cpp main.cpp
// Exercise 15.3 By addng a few lines to the test program, we can see the difference
// between the calls to the base class and derived class who() functions.
#include "Animal.h"
#include