代码搜索:arithmetic

找到约 7,844 项符合「arithmetic」的源代码

代码结果 7,844
www.eeworm.com/read/202486/15381878

cpp pr0111.cpp

// Programming with C++ by John R. Hubbard // Copyright McGraw-Hill, 2000 // Problem 1.11 on page 11 // Printing Values of Arithmetic Expressions #include using namespace std;
www.eeworm.com/read/103618/15727707

m exm0591_1.m

function exm0591_1() %exm0591_1.m X(:,1)=ones(10,1);X(1,1)=100;X(10,1)=0.01; rand('state',1);randn('state',1) X(:,2)=rand(10,1); X(:,3)=randn(10,1);X(:,3)=2*abs(min(X(:,3)))+X(:,3); % Moment1
www.eeworm.com/read/139332/5799877

h dispatch.h

// Copyright (c) 1999 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Witten
www.eeworm.com/read/292398/8358936

dat asslandat76.dat

算术左移指令SAL(Shift <mark>Arithmetic</mark> Left) 指令格式:SAL OPRD1,COUNT 指令功能: 其中OPRD1、COUNT与指令SHL相同。本指令与SHL的功能也完全相同,这是因为逻辑左移指令与算术左移指令所要完成的操作是一样的。如果 SAL将OPRD1的最高位移至CF,改变了原来的CF值,则溢出标志位OF=1,表示移位的前后的操作数不同具有倍增的关系。因 ...
www.eeworm.com/read/192624/8371957

h baseinc.h

#ifndef _BASEINC_H_ #define _BASEINC_H_ #include /* common defines and macros */ #include /* derivative information */ #include "MCUDriver.h" #include "Arithm
www.eeworm.com/read/192624/8372072

h baseinc.h

#ifndef _BASEINC_H_ #define _BASEINC_H_ #include /* common defines and macros */ #include /* derivative information */ #include "MCUDriver.h" #include "Arithm
www.eeworm.com/read/192259/8390786

c writen.c

#include "ourhdr.h" ssize_t /* Write "n" bytes to a descriptor. */ writen(int fd, const void *vptr, size_t n) { size_t nleft, nwritten; const char *ptr; ptr = vptr; /* can't do poin
www.eeworm.com/read/191878/8417966

c jaricom.c

/* * jaricom.c * * [IJG Copyright notice] * * This file holds place for arithmetic entropy codec tables. */ #define JPEG_INTERNALS #include "jinclude.h" #include "jpeglib.h" INT32 jaritab[1];
www.eeworm.com/read/191613/8426839

cpp ex0206.cpp

// Programming with C++, Second Edition, by John R. Hubbard // Copyright McGraw-Hill, 2000 // Example 2.6 on page 22 // Applying Composite Arithmetic Assignment Operators #include