代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/389823/8496998
m qpskencoder.m
function [I_Symbols, Q_Symbols] = QPSKEncoder(BitStreamOne,BitStreamTwo)
I_Symbols = 2*BitStreamOne-1;
Q_Symbols = 2*BitStreamTwo-1;
Symbols = complex(I_Symbols,Q_Symbols);
Symbols = Symbols./abs(Symb
www.eeworm.com/read/432640/8585141
h cplx_dbldbl.h
#ifndef MTL_CPLX_DLBDLB_H
#define MTL_CPLX_DLBDLB_H
#include "mtl/mtl_complex.h"
#include "doubledouble.h"
#include "mtl/mtl_config.h"
#include
namespace std {
// stupid g++
inline comple
www.eeworm.com/read/387891/8648322
c imdct.c
/*
* imdct.c
* Copyright (C) 2000-2003 Michel Lespinasse
* Copyright (C) 1999-2000 Aaron Holtzman
*
* The ifft algorithms in this file have been large
www.eeworm.com/read/287770/8670694
m real.m
function y = real(x)
% REAL Complex real part.
% $Id: real.m 3 2004-02-04 12:57:04Z mairas $
y = x;
y.s = real(y.s);
www.eeworm.com/read/430775/8728885
m z2s.m
%MATLAB function z2s.m converts a network's impedance
%matrix, Z, into the appertaining generalized S matrix.
%The function is called up by S = z2s(Z0, Z). It needs
%as its input arguments not only
www.eeworm.com/read/430775/8728897
m y2s.m
%MATLAB function y2s.m converts a network's admittance
%matrix, Y, into the appertaining generalized S matrix.
%The function is called up by S = y2s(Z0, Y). It needs
%as its input arguments not onl
www.eeworm.com/read/386752/8728904
m z2s.m
%MATLAB function z2s.m converts a network's impedance
%matrix, Z, into the appertaining generalized S matrix.
%The function is called up by S = z2s(Z0, Z). It needs
%as its input arguments not only
www.eeworm.com/read/386752/8728914
m y2s.m
%MATLAB function y2s.m converts a network's admittance
%matrix, Y, into the appertaining generalized S matrix.
%The function is called up by S = y2s(Z0, Y). It needs
%as its input arguments not onl
www.eeworm.com/read/284676/8910358
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
www.eeworm.com/read/383321/8954992
cpp rootmontecarlocomplex.cpp
//RootMonteCarloComplex.cpp
//MonteCarlo法求解非线性方程一复根
#define FM //注解此行,将调用FunctionModule2()
#ifdef FM
#define FunctionModule FunctionModule1
#else
#define FunctionModule FunctionModule2