代码搜索结果
找到约 25,001 项符合
Power 的代码
ifft_manual.m
function [x_real,x_imag]=IFFT_manual(X_real,X_imag,dft_size)
x_real=zeros(1,dft_size);
x_imag=zeros(1,dft_size);
number_of_stage=log2(dft_size);
for stage=1:number_of_stage,
for i=1:power(2,(
fft_manual.m
function [X_real,X_imag]=FFT_manual(x_real,x_imag,dft_size)
X_real=zeros(1,dft_size);
X_imag=zeros(1,dft_size);
number_of_stage=log2(dft_size);
for stage=1:number_of_stage,
for i=1:power(2,
spower.m
function p=spower(x)
% p=spower(x)
%SPOWER returns the power in signal x
p=(norm(x)^2)/length(x);
spower.m
function p=spower(x)
% p=spower(x)
%SPOWER Returns the power in signal x
p=(norm(x)^2)/length(x);
intexp.c
/*----------------------------------------------------------------------
File : intexp.c
Contents: raise x to the power of n, n integer
Author : Christian Borgelt
History : 17.05.2003 file
intexp.c
/*----------------------------------------------------------------------
File : intexp.c
Contents: raise x to the power of n, n integer
Author : Christian Borgelt
History : 17.05.2003 file
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
0809_1.c
#include
#include
#define uchar unsigned char
#define uint unsigned int
#define ADC0809 XBYTE[0x2010]
void power(void);
void wait(uint n);
void main(void)
{power();}
voi
dct.cpp
#define EXTRA_NAME "@dcttransform."
#include "loadbmp.h"
#define Point(x,y) lpPoints[(x)+(y)*nWidth]
void FFT(COMPLEX * TD, COMPLEX * FD, int power)
{
int count;
int i,j,k,bfsize,p;
doub