代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/324540/13259045
m awgn_complex.m
www.eeworm.com/read/239554/13272613
h complex_io.h
//
// file = complex_io.h
//
#ifndef _COMPLEX_IO_H_
#define _COMPLEX_IO_H_
#include
#include
using std::complex;
using namespace std;
//
fstream& operator
www.eeworm.com/read/137746/13301589
h complex_num.h
// Complex_num.h: interface for the CComplex_num class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_NUM_H__0B4F9D94_8CC5_11D4_A754_A60657063
www.eeworm.com/read/137746/13301616
cpp complex_num.cpp
// Complex_num.cpp: implementation of the CComplex_num class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Fileter.h"
#include "Comple
www.eeworm.com/read/136879/13356353
h complex1.h
// Fig. 8.7: complex1.h
// Definition of class Complex
#ifndef COMPLEX1_H
#define COMPLEX1_H
class Complex {
public:
Complex( double = 0.0, double = 0.0 ); // constructor
Complex
www.eeworm.com/read/136879/13356354
cpp complex1.cpp
// Fig. 8.7: complex1.cpp
// Member function definitions for class Complex
#include
#include "complex1.h"
// Constructor
Complex::Complex( double r, double i )
: real( r ), im
www.eeworm.com/read/322565/13376743
mdl complex_add.mdl
Model {
Name "complex_add"
Version 6.2
MdlSubVersion 0
GraphicalInterface {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
ComputedMode
www.eeworm.com/read/321553/13403333
m cl_complex.m
function [u,itera_times]=CL_complex(r_in,M_in,SS,C)
% 解码输入,在实数范围内
% 输入参数:
% r_in为接收到的信号
% M_in为格生成矩阵
% SS为星座集
r=[real(r_in);imag(r_in)];
M1=real(M_in);
M2=imag(M_in);
M=[M1,-M2;M2,M1];
m=siz
www.eeworm.com/read/321553/13403334
asv cl_complex.asv
function [u,itera_times]=CL_complex(r_in,M_in,SS,C)
% 解码输入,在实数范围内
% 输入参数:
% r_in为接收到的信号
% M_in为格生成矩阵
% SS为星座集
r=[real(r_in);imag(r_in)];
M1=real(M_in);
M2=imag(M_in);
M=[M1,-M2;M2,M1];
m=siz
www.eeworm.com/read/321412/13405949
m fft_complex.m
%_______________________________________________________________________
% FFT_COMPLEX.M Matlab script to plot ADSP-TS201 FFT results
%
%___________________________________________________