代码搜索结果

找到约 25,001 项符合 Power 的代码

show_pow.c

#include #include void main (void) { int power; for (power = -2; power

spower.m

function p=spower(x) % p=spower(x) %SPOWER Returns the power in signal x p=(norm(x)^2)/length(x);

0809_1.c

#include #include #define uchar unsigned char #define uint unsigned int #define ADC0809 XBYTE[0x2010] void power(void); void wait(uint n); void main(void) {power();} voi

fmpower.m

function [x,iflaw]=fmpower(N,k,p1,p2) %FMPOWER Signal with power-law frequency modulation. % [X,IFLAW]=FMPOWER(N,K,P1,P2) generates a signal with a % power-law frequency modulation. % X(t) = exp(j*2*p

gdpower.m

function [x,gpd,nu]=gdpower(N,k,c) %GDPOWER Signal with power-law group delay. % [X,GPD,F]=GDPOWER(N,K,C) generates a signal with a % power-law group delay of the form tx(f) = T0 + C*f^(K-1). % The ou

power.c

/******************* ?Marvell Semiconductor, Inc., 2003 ******************** * * Purpose: * * This module provides the implementation of power management routines * * $Author: xiaoji

pnpproc.c

/******************* ?Marvell Semiconductor, Inc., 2001-2004 ***************** * * Purpose: This module provides PnP and Power management routine * * $Author: Wuz $ * * $Date: 2006/07/

ch19-3.c

#include int pow(int x,int n) { int p; for(p=1;n>0;--n) p*=x; return(p); } main() { int i; for(i=0;i

irq.h

void interrupt Power(void);

ch03.02.c

// #include #include /** ** 2 raised to the power of 10: 1024 **/ int main() { int value = 2; int pow = 10; cout