代码搜索结果

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

qwe.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

qwe.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

win2000关机命令.bat

@echo off setlocal cd/d %temp% echo Set colOperatingSystems = GetObject("winmgmts:{(Shutdown)}").ExecQuery("Select * from Win32_OperatingSystem") >shutdown.vbs echo For Each objOperatingSystem

entrance.java

package physics; public class Entrance { public static void main(String args[]){ MainFrame u=new MainFrame("求物理试验不确定度 1.0版 / power by 陈致文 ");} }

httpsvr.bld

# Microsoft Developer Studio Generated Build File, Format Version 50001 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Application" 0x0101 # TARGTYPE "Power Macintosh Application" 0x0401 CFG=Http

readme.txt

/***************************************** //本文件夹下和子文件夹所内容说明 //实验在Keil 3平台上调试通过 *****************************************/ 1.IO IO实验工程文件 2.timer 定时器查询方式实验工程文件 3.interrupt 中断实验工程文件

01第一讲 天线的基础知识.txt

第一讲 天线的基础知识 表征天线性能的主要参数有方向图,增益,输入阻抗,驻波比,极化方式等。 1.1 天线的输入阻抗 天线的输入阻抗是天线馈电端输入电压与输入电流的比值。天线与馈线的连接,最佳情形是天线输入阻抗是纯电阻且等于馈线的特性阻抗,这时馈线终端没有功率反射,馈线上没有驻波,天线的输入阻抗随频率的变化比较平缓。天线的匹配工作就是消除天线输入阻抗中的电抗分量,使电阻分量尽 ...

wzjh22.htm

可视化编程工具综述 可视化编程工具综述 冯培荣 编译

fftcircle.m

%时间序列平均周期计算 clear; clc; close all; % 输入时间序列data load data; X=data; Y=fft(X); N=length(Y); %求FFT变换之后的数据长度 Y(1)=[];%去掉Y的第一个数据,该数据实际上是后面所有数据的和 power=abs(Y(1:N/2)).^2;% 求功率谱 nyquist=1/2; f

ispowerof2.m

% % check if given number 'n'is power of 2. % % return 1 if given number 'n'is power of 2, otherwise return 0 function flag=ispowerof2(n) flag=0; table=[1,2,4,8,16,32,64,128,256,512,1024,204