代码搜索:Difference

找到约 3,389 项符合「Difference」的源代码

代码结果 3,389
www.eeworm.com/read/332820/12725054

sql-

作者:netnova 日期:99-6-27 14:04:37 转换数据 SQL Sever足够强大,可以在需要的时候把大部分数值从一种类型转换为另一种类型。例如,要比较SMALLINT型和INT型数据的大小,你不需要进行显式的类型转换。SQL Sever会为你完成这项工作。但是,当你想在字符型数据和其它类型的数据之间进行转换时,你的确需要自己进行转换操作。例如,假设你想从一个MONEY型 ...
www.eeworm.com/read/331444/12827847

m imstats.m

% imStats(IM1,IM2) % % Report image (matrix) statistics. % When called on a single image IM1, report min, max, mean, stdev, % and kurtosis. % When called on two images (IM1 and IM2), report min, max,
www.eeworm.com/read/244541/12857361

m psnr.m

function [snr,mse] = psnr (A,B) diff = A - B; diff_sq = diff .^ 2; % difference squared mse_clmn = mean(diff_sq); % means square diff. of the columns; mse = mean(mse_clmn); if (mse == 0)
www.eeworm.com/read/244008/12899910

cpp f0615.cpp

//================================== // f0615.cpp // 剩余串排列 //================================== #include #include #include using namespace std; //----------------
www.eeworm.com/read/142672/12931085

erf hw3.erf

MESSAGE "File: .\src\test_stream.vhd" MESSAGE "Compile Entity "test"" MESSAGE "Entity "test" has been skipped - no difference detected." MESSAGE "Compile Architecture "arch_test" of Entity "test""
www.eeworm.com/read/243621/12931404

m diffdem.m

%THIS PROGRAM IS TO DEMONSRATE THE EXTREME SENSITIVITY OF CHAOTIC LOGISTIC %MAP TO INITIAL CONDITION CHANGE IN BIFURCATION PARAMETER TO ORDER 10^-15 %SINCE MATLAB LOWER LIMIT IS (10^-15).same can be
www.eeworm.com/read/321827/13397184

asm memcmp.asm

page ,132 title memcmp - compare to blocks of memory ;*** ;memcmp.asm - compare two blocks of memory ; ; Copyright (c) 1985-1997, Microsoft Corporation. All rights rese
www.eeworm.com/read/320903/13416287

cpp f0615.cpp

//================================== // f0615.cpp // 剩余串排列 //================================== #include #include #include using namespace std; //----------------
www.eeworm.com/read/303513/13813803

m range.m

function y=range(V) %RANGE The range is the difference between the maximum and minimum values. % y = RANGE(V) calculates the ranges of the vector function % components V.x, V.y and V.z. % C
www.eeworm.com/read/302608/13831422

cpp clocks3.cpp

#include #include #include #include using namespace std; #include "ccc_time.h" class Clock { public: /** Constructs a clock that can tel