代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/248715/12544975
c fastcon.c
/***********************************************************************
FASTCON.C - 使用FFT实现快速卷积
该程序利用FFT实现快速卷积运算.
卷积实现一个35阶FIR低通滤波器的响应分析, FIR滤波器参数存放在变量
fir_lpf35中, 输入信号为两个不同频率的信号迭加.此滤波器的阻带衰耗
为
www.eeworm.com/read/334951/12558941
cpp zroots.cpp
#include
#include
#include "nr.h"
using namespace std;
void NR::zroots(Vec_I_CPLX_DP &a, Vec_O_CPLX_DP &roots, const bool &polish)
{
const DP EPS=1.0e-14;
int i,its,j,jj;
www.eeworm.com/read/147096/12584337
m rctdm.m
function [ret,x0,str,ts,xts]=rctdm(t,x,u,flag);
%RCTDM is the M-file description of the SIMULINK system named RCTDM.
% The block-diagram can be displayed by typing: RCTDM.
%
% SYS=RCTDM(T,X,U,FLAG
www.eeworm.com/read/334162/12627733
c rfftw_f77_threads.c
/*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Lic
www.eeworm.com/read/334162/12627751
c executor_threads.c
/*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Lic
www.eeworm.com/read/334162/12627768
h fftw_threads.h
/*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Lic
www.eeworm.com/read/334162/12628323
c fftwnd.c
/*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Lic
www.eeworm.com/read/334162/12628419
in fftw.h.in
/* -*- C -*- */
/*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge
www.eeworm.com/read/334162/12628494
h fftw.h
/* -*- C -*- */
/*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge
www.eeworm.com/read/146506/12642004
cpp xt10-1.cpp
#include
using namespace std;
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
double get_real();
double get_imag();
void