代码搜索:Power

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

代码结果 10,000
www.eeworm.com/read/437667/7744099

rpt acs_1.fit.rpt

Fitter report for ACS_1 Mon Oct 02 14:49:08 2006 Version 6.0 Build 178 04/27/2006 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Legal Notice 2. Fi
www.eeworm.com/read/437115/7755044

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/436587/7767168

pin half_ad.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/436587/7767170

rpt half_ad.fit.rpt

Fitter report for half_ad Mon Mar 23 16:17:16 2009 Quartus II Version 6.1 Build 201 11/27/2006 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Legal No
www.eeworm.com/read/436250/7774243

c show_pow.c

#include #include void main (void) { int power; for (power = -2; power
www.eeworm.com/read/435631/7788641

rpt testctl.fit.rpt

Fitter report for testctl Wed Aug 20 13:01:23 2008 Quartus II Version 8.0 Build 215 05/29/2008 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Legal No
www.eeworm.com/read/435547/7790706

m soj_reqi.m

% Use this input file to excite function "ssj_req" clear all pt = 5.0e+3; % peak power in Watts g = 35.0; % antenna gain in dB freq = 5.6e+9; % radar operating frequency in Hz sigma = 1
www.eeworm.com/read/435547/7790707

m ssj_req_bat.m

%ssj_reqi clear all pt = 50.0e+3; % peak power in Watts g = 35.0; % antenna gain in dB freq = 5.6e+9; % radar operating frequency in Hz sigma = 10.0 ; % radar cross section in m sqau
www.eeworm.com/read/435150/7796507

cpp prog9_07.cpp

// Program 9.7 recursive version of x to the power n #include #include using std::cout; using std::endl; double power(double x, int n); int main() { cout
www.eeworm.com/read/435150/7796540

cpp prog8_02.cpp

// Program 8.2 Calculating powers - rearranged #include #include using std::cout; using std::endl; double power(double x, int n); // Prototype for power function int m