代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/480626/6667165
ncb complex.ncb
www.eeworm.com/read/480626/6667166
hpp complex.hpp
#pragma once
#include
class Complex
{
private:
double real;
double imag;
public:
template< typename Type >
Complex( Type const&, Type const& );
template< typename Type
www.eeworm.com/read/480626/6667179
ilk complex.ilk
www.eeworm.com/read/480626/6667180
exe complex.exe
www.eeworm.com/read/480626/6667181
pdb complex.pdb
www.eeworm.com/read/480287/6669555
m complex.m
www.eeworm.com/read/479166/6700072
cpp complex.cpp
// Fig. 11.20: Complex.cpp
// Complex class member-function definitions.
#include
using std::cout;
#include "Complex.h" // Complex class definition
// Constructor
Complex::Complex
www.eeworm.com/read/479166/6700074
h complex.h
// Fig. 11.19: Complex.h
// Complex class definition.
#ifndef COMPLEX_H
#define COMPLEX_H
class Complex
{
public:
Complex( double = 0.0, double = 0.0 ); // constructor
Complex operator
www.eeworm.com/read/477739/6733554
cpp complex.cpp
#include "stdafx.h"
ComplexNumber ComplexMultiply(ComplexNumber x, ComplexNumber y)
//
// Copyright 2002 The Mobile and Portable Radio Research Group
//
{
ComplexNumber Result;
Result.rea