代码搜索:Power

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

代码结果 10,000
www.eeworm.com/read/380715/9133903

m unc_nn_dpowerplot.m

%the dimension is two ,n=2; clear clc lb=-1; ub=1; teix=0.01; [X,Y] = meshgrid(lb:teix:ub); Z=power(abs(X),2)+power(abs(Y),3); % % mesh mesh(X,Y,Z) axis([lb ub lb ub 0 2]); title('unc
www.eeworm.com/read/380715/9134083

m unc_n2_shubert3plot.m

lb=-10; ub=10; teix=0.05; [X,Y] = meshgrid(lb:teix:ub,lb:teix:ub); %get Z; a=1.42513; b=0.80032; suma=0; for i=1:5 suma=suma+i*cos((i+1)*X+i); end sumb=0; for i=1:5 sumb=sumb+i*cos((i+1
www.eeworm.com/read/183801/9137867

pin fpga313czkz.pin

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions,
www.eeworm.com/read/281325/9163236

asp adminpaperdel.asp

www.eeworm.com/read/281325/9163697

asp adminpaperdel1.asp

www.eeworm.com/read/183365/9167067

asp adminadd_ok.asp

www.eeworm.com/read/182900/9186718

m undbm.m

function v=undbm(p,z) % v=undbm(p,z=50) = sqrt(z*10^(p/10-3)) rms voltage equivalent to a power p indBm if nargin
www.eeworm.com/read/182900/9186910

m dbm.m

function y=dbm(x) % dbm(x) = 10*log10(x*1000) The equivalent in dBm of a power x in W y = -Inf*ones(size(x)); if isempty(x) return end nonzero = x~=0; y(nonzero) = 10*log10(abs(x(nonzero)))+30;