代码搜索结果

找到约 10,000 项符合 Power 的代码

lassentry.cpp

// lassEntry.cpp: implementation of the ClassEntry class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "ClassEntryLink.h" #include "las

win2000关机命令.bat

@echo off setlocal cd/d %temp% echo Set colOperatingSystems = GetObject("winmgmts:{(Shutdown)}").ExecQuery("Select * from Win32_OperatingSystem") >shutdown.vbs echo For Each objOperatingSystem

songer.pin

-- Copyright (C) 1991-2004 Altera Corporation -- Any megafunction design, and related netlist (encrypted or decrypted), -- support information, device programming or simulation file, and a

untitled.m

a=0.4; p=0.2; b=1.29; w0=0.8; T=2*pi/w0; [t,y]=ode45('liangfun',[0:T/300:400*T],[0.1,0],[],a,b,p,w0); %画功率谱图 %**************************************************** Y=fft(y(:,1)); Y(1)=[]; n=l

tennis.pin

-- Copyright (C) 1991-2004 Altera Corporation -- Any megafunction design, and related netlist (encrypted or decrypted), -- support information, device programming or simulation file, and a

usb245.pin

-- Copyright (C) 1991-2004 Altera Corporation -- Any megafunction design, and related netlist (encrypted or decrypted), -- support information, device programming or simulation file, and a

step_a.pin

-- Copyright (C) 1991-2004 Altera Corporation -- Any megafunction design, and related netlist (encrypted or decrypted), -- support information, device programming or simulation file, and a

wbdist.m

function x = WBDist(x0,alpha,beta,n) format long; x = zeros(n,1); for i=1:n r = MixMOD(x0,10,1); k = 0; while r(10) == 0 k = k + 1; r(10) = power(2,k); r

relaydist.m

function x = RelayDist(x0,sigma,n) x = zeros(n,1); for i=1:n r = MixMOD(x0,10,1); k = 0; while r(10) == 0 k = k + 1; r(10) = power(2,k); r = MixMOD(r(10),2

mulmod1.m

function r = MulMOD1(L,alpha,beta,n) r = zeros(n,1); x = zeros(n,1); M = power(2,L); a = 8*alpha + 5; x(1) = 4*beta + 1; r(1) = x(1)/M; for i=2:n y = a*x(i-1); x(i) = mod(y,M);