代码搜索:Power

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

代码结果 10,000
www.eeworm.com/read/153407/12035650

m mypower.m

function y=mypower(x1,x2) %MYPOWER Protected power function. % MYPOWER(X1,X2) returns 0 if X1^X2 is NaN or Inf, % or has imaginary part, otherwise returns X1^X2. % % Input arguments: %
www.eeworm.com/read/256014/12036741

c show_pow.c

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

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/255284/12090461

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/255016/12106094

pin mux21a.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
www.eeworm.com/read/152406/12116687

m adbp.m

% ADBP Convert a decibel signal into a power signal % % [y] = ADBP (x) converts x into a power signal % function [y] = adbP (x) y = 10.^(x/10);
www.eeworm.com/read/152406/12116750

m adbm.m

% ADBM Convert a dbm signal into a power signal (Watts) % % [y] = ADBM (x) converts x into a power signal % function [y] = adbm (x) y = 10.^((x-30)/10);
www.eeworm.com/read/152406/12116758

m dbp.m

% DBP Convert a power signal into decibels % % [y] = DBP (x) converts x into decibels % function [y] = dbP (x) y = 10.*log10(abs(x));
www.eeworm.com/read/152406/12116830

m dbm.m

% DBM Convert a power signal (Watts) into dbm % % [y] = DBM (x) converts x into dbm % function [y] = dbm (x) y = 10.*log10(abs(x/1E-3));
www.eeworm.com/read/340916/12124250

cpp ex5_14.cpp

// Ex5_14.cpp (based on Ex5_01.cpp) // A recursive version of x to the power n #include using std::cout; using std::endl; double power(double x, int n); // Function prototype i