代码搜索:arithmetic
找到约 7,844 项符合「arithmetic」的源代码
代码结果 7,844
www.eeworm.com/read/436895/7759273
m arithmetic.m
%Question No:1
%Write a MATLAB function which performs the four arithmetic operations
%between two images.
function arithmetic(x,y)
a=imread(x);
b=imread(y);
a=im2double(a);
b=im2double(b);
www.eeworm.com/read/180812/7806357
c arithmetic.c
#include
#include
#include
FILE *fin;
char *filein;
struct alphabet /*定义list结构体,alph指定字节,time出现次数 */
{
char
www.eeworm.com/read/146299/12660306
h arithmetic.h
/*
*
* arithmetic.h
*
* Copyright (c) 2001, 2002
* Andrew Fedoniouk - andrew@terra-informatica.org
* Portions: Serge Kuznetsov - kuznetsov@deeptown.org
*
* See the file "COPYING" for informati
www.eeworm.com/read/146124/12669448
lib arithmetic.lib
www.eeworm.com/read/146124/12669551
dll arithmetic.dll
www.eeworm.com/read/143089/12900006
cpp arithmetic.cpp
//: C10:Arithmetic.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "NamespaceInt.h"
void
www.eeworm.com/read/242742/12988470
h arithmetic.h
#pragma once
#include "global.h"
DLL_INTERNAL DWORD GetHexDataByBitNum(int nBitNum, BOOL bReverse=FALSE);
DLL_INTERNAL DWORD GenExclusiveDigit ();
DLL_INTERNAL int FindMinValue ( CUIntArray &UIn
www.eeworm.com/read/242742/12988477
cpp arithmetic.cpp
#include "StdAfx.h"
#include "PublicFunc.h"
//
// 根据位数来制作一个所有位全为“1”的十六进制的数,比如输入 7 位
// 返回 0x7F,8位则返回 0xFF,即根据位数得到最大值
//
DWORD GetHexDataByBitNum(int nBitNum, BOOL bReverse/*=FALSE*/)
{
DWOR
www.eeworm.com/read/139679/13141615