代码搜索:Difference
找到约 3,389 项符合「Difference」的源代码
代码结果 3,389
www.eeworm.com/read/275194/10830207
hpp cvec.hpp
// $common\cvec.hpp 1.5 milbo$ cvec is like STL vector but checks for out of range indices when _DEBUG is defined.
// Warning: this is raw research code -- expect it to be quite messy.
//
// If _DEBUG
www.eeworm.com/read/270963/11017815
cpp 12-10-04.cpp
#include
#include
#include
#include
using namespace std;
int main()
{
int A[] = {1, 4, 9, 16, 25, 36, 49, 64, 81, 100};
const int N = sizeof(A) / sizeo
www.eeworm.com/read/465627/7050739
m idx_brch.m
function [F_BUS, T_BUS, BR_R, BR_X, BR_B, RATE_A, RATE_B, ...
RATE_C, TAP, SHIFT, BR_STATUS, PF, QF, PT, QT, MU_SF, MU_ST, ...
ANGMIN, ANGMAX, MU_ANGMIN, MU_ANGMAX] = idx_brch
%IDX_BRCH Defi
www.eeworm.com/read/456887/7337697
h amf_testgensinequadrature.h
#ifndef _AMF_TESTGENSINEQUADRATURE_
#define _AMF_TESTGENSINEQUADRATURE_
// Copyright(c) 2005 Analog Devices, Inc. All Rights Reserved.
// This software is proprietary and confidential to Analog D
www.eeworm.com/read/455815/7365081
txt freescale-ccd.txt
#include /* common defines and macros */
#include /* derivative information */
#pragma LINK_INFO DERIVATIVE "mc9s12db128b"
#include "define.h"
#include "init.h"
/
www.eeworm.com/read/455289/7374137
cpp main.cpp
#include
#include
using namespace std;
void print(int x){
cout
www.eeworm.com/read/453243/7423398
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/450111/7490570
hpp allocate.hpp
#ifndef AllocatedHPP
#define AllocatedHPP
#include
template
inline TType *Allocate(int Count, TType *)
{
if (Count < 0)
Count = 0;
return new TType[Count];
}
www.eeworm.com/read/298590/7950232
m idx_brch.m
function [F_BUS, T_BUS, BR_R, BR_X, BR_B, RATE_A, RATE_B, ...
RATE_C, TAP, SHIFT, BR_STATUS, PF, QF, PT, QT, MU_SF, MU_ST, ...
ANGMIN, ANGMAX, MU_ANGMIN, MU_ANGMAX] = idx_brch
%IDX_BRCH Defi
www.eeworm.com/read/196122/8114110
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)