代码搜索:Power
找到约 10,000 项符合「Power」的源代码
代码结果 10,000
www.eeworm.com/read/228594/14377961
pin hhmmss.pin
-- Copyright (C) 1991-2006 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/228594/14378163
pin fff.pin
-- Copyright (C) 1991-2006 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/228580/14378568
pin adc0809.pin
-- Copyright (C) 1991-2006 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/228503/14381184
m cp0202_transmitter_2pam_ds.m
%
% FUNCTION 2.9 : "cp0202_transmitter_2PAM_DS"
%
% Simulation of a UWB transmitter implementing 2PAM with DS
%
% Transmitted power is fixed to 'Pow'
% The signal is sampled with frequency 'fc'
www.eeworm.com/read/228372/14388041
m lpcar2pf.m
function pf=lpcar2pf(ar,np)
%LPCAR2PF Convert AR coefs to power spectrum PF=(AR,NP)
% the power spectrum will contain np+2 points ranging from Dc to nyquist frequency
% The routine is faster if NP+
www.eeworm.com/read/126832/14400111
a51 dcm44d.a51
$TITLE (iDCM 44 COMMUNICATIONS FIRMWARE: POWER-UP DIAGNOSTICS MODULE)
$DATE (8 AUGUST 86)
$NOMO
$PAGING
$REGISTERBANK(0)
;*****************************************************************
www.eeworm.com/read/126767/14404659
java moduloarithmetic.java
package numbercruncher.mathutils;
/**
* Perform multiplication and exponentiation modulo arithmetic.
*/
public class ModuloArithmetic
{
/**
* Multiply two integer values a and b modu
www.eeworm.com/read/126510/14418135
c 90.c
# include "stdio.h"
main( )
{
int x, n ;
scanf("%d,%d",&x,&n);
printf("%d**%d=%d\n",x,n,power(x,n));
}
power( int x, int n)
{
int p
www.eeworm.com/read/126510/14418138
c 13.c
# include "stdio.h"
main( )
{
int x, n ;
scanf("%d,%d",&x,&n);
printf("%d**%d=%d\n",x,n,power(x,n));
}
power( int x, int n)
{
int p
www.eeworm.com/read/126507/14418347
c ch03.01.c
// iostream.h is preStandard form
// #include
#include
/**
** 2 raised to the power of 10: 1024
**/
int main() {
// a first solution
cout