代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/245782/4501529
h complex.h
//////////////////////////////////////////////////////////////////////
// Complex.h
//
// 操作复数的类 CComplex 的声明接口
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/245782/4501539
cpp complex.cpp
//////////////////////////////////////////////////////////////////////
// Complex.h
//
// 操作复数的类 CComplex 的实现代码
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/245782/4501550
h complex.h
//////////////////////////////////////////////////////////////////////
// Complex.h
//
// 操作复数的类 CComplex 的声明接口
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/243866/4518828
java complex.java
package com.javapatterns.immutable.complex;
final public class Complex extends Number
implements java.io.Serializable, Cloneable, Comparable
{
static final public Complex i = new Complex(0.0,
www.eeworm.com/read/242732/4537804
h complex.h
/*
* complex.h
*
* This file is part of the Mingw32 package.
*
* Contributors:
* Created by Danny Smith
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
www.eeworm.com/read/242667/4546378
c complex.c
# include
# include
/**************complex mirror ***********/
void complex(float *frame, float *fft_frame)
{
int i;
int j;
int k;
// real and imaginary p
www.eeworm.com/read/242667/4546382
h complex.h
//complex.h
#ifndef _COMPLEX
#define _COMPLEX
//void complex(float *frame, float *fft_input, int const size_fft_input);
void complex(float *frame, float *fft_input);
void complex2(float *frame, f
www.eeworm.com/read/242667/4546392
c complex.c
# include
# include
/**************complex mirror ***********/
void complex(float *frame, float *fft_frame)
{
int i;
int j;
int k;
// real and imaginary p
www.eeworm.com/read/242667/4546396
h complex.h
//complex.h
#ifndef _COMPLEX
#define _COMPLEX
//void complex(float *frame, float *fft_input, int const size_fft_input);
void complex(float *frame, float *fft_input);
void complex2(float *frame, f
www.eeworm.com/read/241710/4559285
cs complex.cs
using System;
namespace FFT
{
///
/// Summary description for Complex.
///
public class Complex
{
float real;
float imag;
//----------------------------