代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/277819/4150569
cpp 8_1.cpp
#include
class complex //复数类声明
{
public: //外部接口
complex(double r=0.0,double i=0.0){real=r;imag=i;} //构造函数
complex operator + (complex c2); //运算符+重载成员函数
complex operator - (complex
www.eeworm.com/read/277819/4150699
cpp 8_1.cpp
#include
class complex //复数类声明
{
public: //外部接口
complex(double r=0.0,double i=0.0){real=r;imag=i;} //构造函数
complex operator + (complex c2); //运算符+重载成员函数
complex operator - (complex
www.eeworm.com/read/236246/4643013
cpp 18_1.cpp
#include
class Complex{
public:
Complex(double r=0, double v=0):real(r),virt(v){}
friend Complex operator+(Complex a, Complex b);
friend ostream& operator
www.eeworm.com/read/175402/5347233
cpp 18_1.cpp
#include
class Complex{
public:
Complex(double r=0, double v=0):real(r),virt(v){}
friend Complex operator+(Complex a, Complex b);
friend ostream& operator
www.eeworm.com/read/282196/4106495
cpp 18_1.cpp
#include
class Complex{
public:
Complex(double r=0, double v=0):real(r),virt(v){}
friend Complex operator+(Complex a, Complex b);
friend ostream& operator
www.eeworm.com/read/435341/1864578
cpp 18_1.cpp
#include
class Complex{
public:
Complex(double r=0, double v=0):real(r),virt(v){}
friend Complex operator+(Complex a, Complex b);
friend ostream& operator
www.eeworm.com/read/382268/2638419
cpp 18_1.cpp
#include
class Complex{
public:
Complex(double r=0, double v=0):real(r),virt(v){}
friend Complex operator+(Complex a, Complex b);
friend ostream& operator
www.eeworm.com/read/351636/3103878
p caxpy.p
extern int caxpy_(integer *n, complex *ca, complex *cx, integer *incx, complex *cy, integer *incy);
www.eeworm.com/read/470917/1441778
c nldbl-cpow.c
#include "nldbl-compat.h"
#include
double _Complex
attribute_hidden
cpowl (double _Complex x, double _Complex y)
{
return cpow (x, y);
}
www.eeworm.com/read/237551/4625898
c nldbl-cpow.c
#include "nldbl-compat.h"
#include
double _Complex
attribute_hidden
cpowl (double _Complex x, double _Complex y)
{
return cpow (x, y);
}