代码搜索结果
找到约 10,000 项符合
Power 的代码
mul.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
clsmd5.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
ex3_2.cpp
//【例3.2】说明实参和形参对应关系的示例。
#include
using namespace std;
float power(float x,int n){ //求x的n次幂
float pow=1;
while(n--)
pow*=x;
return pow;
}
int main(){
int n=3;
float x
specgram_demo.py
#!/usr/bin/env python
from pylab import *
dt = 0.0005
t = arange(0.0, 20.0, dt)
s1 = sin(2*pi*100*t)
s2 = 2*sin(2*pi*400*t)
# create a transient "chirp"
mask = where(logical_and(t>10, t
lift.pin
-- Copyright (C) 1991-2007 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
platform.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you lic
readme.txt
Power Manager samples/tests
=========================================
DEVSAMPLE - Sample power-managed device simulation (software only, no hardware)
GET - Gets the system power state using Get
serial.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
fft_demo.asv
% fft demo
t = 0:.001:.25;
% creat signal
x = sin(2*pi*50*t) + sin(2*pi*120*t);
% add noise and show it
y = x + 2*randn(size(t));
subplot(221)
plot(y(1:50)), title('Noisy time domain signal')
sunspots_demo.m
% This demonstration uses the FFT function to analyze the variations in sunspot
% activity over the last 300 years.
% Sunspot activity is cyclical, reaching a maximum about every 11 years. Let's
%