代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/162511/10300157

c size_from_kind.c

/* Copyright (C) 2005 Free Software Foundation, Inc. Contributed by Janne Blomqvist This file is part of the GNU Fortran runtime library (libgfortran). Libgfortran is free software; you can redis
www.eeworm.com/read/162352/10311654

h mds_def.h

/* * $Source: /usr/gcc/DELIVERABLES/adi-21csp-sol/21csp/include/mdsp/mds_def.h,v $ * $Revision: 1.1.1.1 $ * $Author: levb $ $Date: 1996/11/13 15:58:28 $ */ /*******************************************
www.eeworm.com/read/424568/10439082

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/424281/10467896

c real_unpack.c

/* fft/real_unpack.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Ge
www.eeworm.com/read/424281/10467925

h hc_pass.h

/* fft/hc_pass.h * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Genera
www.eeworm.com/read/424281/10467938

h real_pass.h

/* fft/real_pass.h * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Gene
www.eeworm.com/read/424281/10473043

c zsolve_cubic.c

/* poly/zsolve_cubic.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU
www.eeworm.com/read/424281/10473069

c zsolve_quadratic.c

/* poly/zsolve_quadratic.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the
www.eeworm.com/read/424281/10473546

c hermtd.c

/* linalg/hermtd.c * * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as pu
www.eeworm.com/read/352501/10546475

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