代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/158865/5592712
c c_exp.c
#include "f2c.h"
#ifdef KR_headers
extern double exp(), cos(), sin();
VOID c_exp(r, z) complex *r, *z;
#else
#undef abs
#include "math.h"
void c_exp(complex *r, complex *z)
#endif
{
double expx,
www.eeworm.com/read/158865/5592733
c c_div.c
#include "f2c.h"
#ifdef KR_headers
extern VOID sig_die();
VOID c_div(c, a, b)
complex *a, *b, *c;
#else
extern void sig_die(char*,int);
void c_div(complex *c, complex *a, complex *b)
#endif
{
double
www.eeworm.com/read/158865/5592745
c c_abs.c
#include "f2c.h"
#ifdef KR_headers
extern double f__cabs();
double c_abs(z) complex *z;
#else
extern double f__cabs(double, double);
double c_abs(complex *z)
#endif
{
return( f__cabs( z->r, z->i )
www.eeworm.com/read/158865/5592767
c c_cos.c
#include "f2c.h"
#ifdef KR_headers
extern double sin(), cos(), sinh(), cosh();
VOID c_cos(r, z) complex *r, *z;
#else
#undef abs
#include "math.h"
void c_cos(complex *r, complex *z)
#endif
{
doubl
www.eeworm.com/read/158865/5592775
c r_cnjg.c
#include "f2c.h"
#ifdef KR_headers
VOID r_cnjg(r, z) complex *r, *z;
#else
VOID r_cnjg(complex *r, complex *z)
#endif
{
real zi = z->i;
r->r = z->r;
r->i = -zi;
}
www.eeworm.com/read/158865/5592815
c c_sin.c
#include "f2c.h"
#ifdef KR_headers
extern double sin(), cos(), sinh(), cosh();
VOID c_sin(r, z) complex *r, *z;
#else
#undef abs
#include "math.h"
void c_sin(complex *r, complex *z)
#endif
{
doubl
www.eeworm.com/read/158526/5596971
asm rfft32br.asm
;========================================================================
;
; File Name : rfft_brc.asm
;
; Originator : Advanced Embeeded Control
; Texas Instruments
;
www.eeworm.com/read/475717/6776127
cpp 生成w因子表.cpp
//整体替代main函数
#define PI 3.141592
struct complex
{
short real,image;
};
void w_factor(int N)
{
complex *w_temp = new complex[N/2];
int j=1,k;
printf("%s%d%s%d%s","short w",N/2,"[",N,"] = {\n"
www.eeworm.com/read/475201/6793920
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/475201/6793926
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