代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4684712
h struct-complex-1.h
#include
struct st
{
int s1;
float complex x;
int s2;
};
typedef struct { float r, i; } _complex;
struct stc
{
int s1;
_complex x;
int s2;
};
www.eeworm.com/read/233448/4691945
cc complex_inserters_extractors.cc
// 2000-02-10
// Petter Urkedal
// Copyright (C) 2000, 2003 Free Software Foundation
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you
www.eeworm.com/read/190666/5177959
c builtin-complex-1.c
/* Test for builtin conj, creal, cimag. */
/* Origin: Joseph Myers */
extern float _Complex conjf (float _Complex);
extern double _Complex conj (double _Complex);
extern long doubl
www.eeworm.com/read/190666/5182363
cc complex_inserters_extractors.cc
// 2000-02-10
// Petter Urkedal
// Copyright (C) 2000 Free Software Foundation
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can re
www.eeworm.com/read/167728/5452569
h gsl_vector_complex.h
#ifndef __GSL_VECTOR_COMPLEX_H__
#define __GSL_VECTOR_COMPLEX_H__
#define GSL_VECTOR_REAL(z, i) ((z)->data[2*(i)*(z)->stride])
#define GSL_VECTOR_IMAG(z, i) ((z)->data[2*(i)*(z)->stride + 1])
www.eeworm.com/read/167728/5452594
h gsl_fft_complex.h
/* fft/gsl_fft_complex.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 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/167728/5452602
h gsl_complex_math.h
/* complex/gsl_complex_math.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Jorma Olavi T鋒tinen, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it
www.eeworm.com/read/167728/5452674
h gsl_block_complex.h
#ifndef __GSL_BLOCK_COMPLEX_H__
#define __GSL_BLOCK_COMPLEX__
#define GSL_BLOCK_REAL(z, i) ((z)->data[2*(i)])
#define GSL_BLOCK_IMAG(z, i) ((z)->data[2*(i) + 1])
#if GSL_RANGE_CHECK
#defi