代码搜索:Power
找到约 10,000 项符合「Power」的源代码
代码结果 10,000
www.eeworm.com/read/110034/6170317
c bmpower.c
/****************************************************************************
*
* Module Name: bmpower.c - Driver for ACPI Power Resource 'devices'
* $Revision: 20 $
*
*************************
www.eeworm.com/read/484139/6591319
m ch5example9prog2.m
% ch5example9prog2.m
function out=ch5example9prog2(in, SNRdB)
% SNR_dB 设定信噪比
% in 输入信号序列
% out 信道输出序列
Fs=50000; %系统采样率
Power_of_in=var(in);
Power_of_noise=Power_of_in/(10.^(SNRdB/10));
bandwid
www.eeworm.com/read/161121/5559382
c bmpower.c
/****************************************************************************
*
* Module Name: bmpower.c - Driver for ACPI Power Resource 'devices'
* $Revision: 20 $
*
*************************
www.eeworm.com/read/411692/11232063
h usbdgadget.h
#include
#include
#include
#include "generic.h"
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/292398/8358448
dat codetc12.dat
extern 声明外部变量
外部变量(即全局变量)是在函数的外部定义的,它的作用域为从变量的定义处开始到本程序文件的末尾.在此作用域内,全局变量可以为程序各个函数所引用.编译时将外部变量分配在静态存储区内.
有时需要用extern来声明外部变量,以扩展外部变量的作用域.
1. 在一个文件内声明外部变量
如果外部变量不在文件的开头定义,其有效的作用范围只限 ...
www.eeworm.com/read/392144/8361244
pin sine.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, and a
www.eeworm.com/read/192685/8362614
txt 如何在数据库中保存公式.txt
你可以试一试用CSV格式保存那些数学公式,用WORKPAD就可以输入,格式如下:
ID1 ,公式1
ID2 ,公式2
ID3 ,公式3
.
.
.
IDn ,公式n
你甚至可以不用ID,但每一个公式必须是一行,输入完后注意要用CSV文件后缀保存。
这样,你就可以用VB来获取它们
www.eeworm.com/read/392021/8366899
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/392021/8367136
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;
www.eeworm.com/read/392011/8367348
m calcsnr.m
function [snrdB,ptotdB,psigdB,pnoisedB] = calcSNR(vout,f,fB,w,N)
% SNR calculation in the time domain (P. Malcovati, S. Brigati)
% function [snrdB,ptotdB,psigdB,pnoisedB] = calcSNR(vout,f,fB,w,N)
%