代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/332645/12745536
h complex.h
// complex.h: interface for the Complex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX_H__621EF93F_D626_49D7_B0C1_EEA88F0D5090__INCLUDED
www.eeworm.com/read/332480/12753940
h complex.h
#include
struct complex {
double x;
double y;
};
complex cmplx(double x,double y)
{
complex z;
z.x=x;z.y=y;
return z;
}
complex conjg(complex z)
{
return cmplx(z.x,-z.y);
}
www.eeworm.com/read/245784/12780926
cpp complex.cpp
//////////////////////////////////////////////////////////////////////
// Complex.h
//
// 操作复数的类 CComplex 的实现代码
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/245784/12781020
h complex.h
//////////////////////////////////////////////////////////////////////
// Complex.h
//
// 操作复数的类 CComplex 的声明接口
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/245201/12811327
c complex.c
#include
#include
inline complex< double >&
operator+=( complex< double > &c, double dval )
{
return c += complex< double >( dval );
}
inline complex< double >&
www.eeworm.com/read/331567/12820377
h complex.h
/* This is a C9X complex.h implementation for the GNU C compiler.
It uses GNU extensions such as __complex__, but defines them
so the syntax specified by C9X works.
S. L. Moshier
February
www.eeworm.com/read/331439/12828850
m complex.m
function q = complex(a,b)
% COMPLEX Construct a complex quaternion from real quaternions.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/330149/12909331
class complex.class
www.eeworm.com/read/329744/12935901
frx complex.frx
www.eeworm.com/read/329744/12936236
frm complex.frm
VERSION 5.00
Object = "*\A..\SOURCE\FAST2002.vbp"
Begin VB.Form frmComplex
BorderStyle = 3 'Fixed Dialog
Caption = "Complex Numbers"
ClientHeight = 3330
Client