代码搜索:Power
找到约 10,000 项符合「Power」的源代码
代码结果 10,000
www.eeworm.com/read/489077/6482491
pin vga_controller.pin
-- Copyright (C) 1991-2008 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and a
www.eeworm.com/read/488704/6484275
rpt char_7seg.fit.rpt
Fitter report for char_7seg
Wed Mar 18 23:23:07 2009
Quartus II Version 8.1 Build 163 10/28/2008 SJ Web Edition
---------------------
; Table of Contents ;
---------------------
1. Legal N
www.eeworm.com/read/488461/6487283
m ip_01_08.m
% MATLAB script for Illustrartive Problem 8, Chapter 1.
ts=0.001;
fs=1/ts;
t=[0:ts:10];
x=cos(2*pi*47*t)+cos(2*pi*219*t)
www.eeworm.com/read/488475/6487831
rpt part1.fit.rpt
Fitter report for part1
Fri May 22 09:23:49 2009
Quartus II Version 8.1 Build 163 10/28/2008 SJ Web Edition
---------------------
; Table of Contents ;
---------------------
1. Legal Notic
www.eeworm.com/read/488092/6496138
rpt count__10.fit.rpt
Fitter report for count__10
Sun Mar 29 12:18:44 2009
Version 6.0 Build 178 04/27/2006 SJ Web Edition
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
2.
www.eeworm.com/read/487875/6501328
h display.h
unsigned char code Ncode[31]={64,121,36,48,25,18,2,88,0,16,8,3,70,33,6,14,127,72,64,18,121,65,99,16,12,127,7,9,63,71,24}; //0、1、2、3、4、5、6、7、8、9、A、b、C、E、F、Space,N,O,S,I,U,V,g,P,dip,T,H,-,q
#define pow
www.eeworm.com/read/486654/6524737
cpp 1487.cpp
/* This Code is Submitted by wywcgs for Problem 1487 on 2006-08-02 at 10:48:09 */
#include
#include
const int MAX = 128;
int power[MAX];
bool ship[MAX][MAX];
int max;
www.eeworm.com/read/486797/6529295
m primemod.m
function r = PrimeMOD(x0,n,type)
format long;
M1 = power(2,35)-31;
M2 = power(2,31)-1;
a1 = 3125;
a2 = 16807;
r = zeros(n,1);
x = zeros(n+5,1);
x(1) = x0;
if type == 1
for i=2:n+5
www.eeworm.com/read/486797/6529302
m gaussdist.m
function x = GaussDist(x0,mu,sigma,n)
format long;
x = zeros(n,1);
u = zeros(12,1);
for i=1:n
y = -6;
for j=1:12
r = MixMOD(x0,10,1);
k = 0;
while r(10) == 0
www.eeworm.com/read/486797/6529303
m powerdist.m
function x = PowerDist(x0,beta,n)
x = zeros(n,1);
for i=1:n
r = MixMOD(x0,2,1);
k = 0;
while r(2) == 0
k = k + 1;
r(2) = power(2,k);
r = MixMOD(r(2),2,1);