代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/141297/5773150
i gr_fir_filter_fcc.i
/* -*- c++ -*- */
/*
* Copyright 2004 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the ter
www.eeworm.com/read/141297/5773211
cc gr_fir_sysconfig_generic.cc
/* -*- c++ -*- */
/*
* Copyright 2003,2004 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under th
www.eeworm.com/read/141297/5773227
i gr_fir_filter_scc.i
/* -*- c++ -*- */
/*
* Copyright 2004 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the ter
www.eeworm.com/read/141297/5773583
i gr_vector_source_c.i
/* -*- c++ -*- */
/*
* Copyright 2004 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the ter
www.eeworm.com/read/141297/5773613
i gr_multiply_const_cc.i
/* -*- c++ -*- */
/*
* Copyright 2004 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the ter
www.eeworm.com/read/141297/5773780
i gr_add_const_cc.i
/* -*- c++ -*- */
/*
* Copyright 2004 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the ter
www.eeworm.com/read/492812/6409958
c fft.c
//FFT.c C callable FFT function in C
#define PTS 256 //# of points for FFT
typedef struct {float real,imag;} COMPLEX;
extern COMPLEX w[PTS]; //twiddle constants stored in w
v
www.eeworm.com/read/483599/6599431
txt ofdm_c.txt
1
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
www.eeworm.com/read/480149/6678062
m ch2_60.m
%定义一个具有实数和复数的矩阵
A=[5 6.5 2+3i 3.5 6 1+2i];
%定义存储实数和复数的矩阵目前为空矩阵
real_array=[];
complex_array=[];
for i=1:length(A),
%判断矩阵元素是否为实数
if isreal(A(i))==1,
real_array=[real_array A(i)]
www.eeworm.com/read/478677/6713057
h matrix.h
/*! @file
********************************************************************************
模块名 : 实现复数矩阵的基本运算
文件名 : matrix.h
文件实现功能 : 实现复数矩阵的基本运算,并能实现复数矩阵的求逆、快速傅里叶变换和奇异值分解。
作者