代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/482846/6614609
cpp complex1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/482846/6614610
cpp complex2.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/480626/6667168
hpp complex_def.hpp
#pragma once
#include "Complex.hpp"
template< typename Type >
Complex::Complex( Type const& a, Type const& b )
{
real= static_cast(a);
imag= static_cast(b);
}
template
www.eeworm.com/read/480149/6677829
m sort_complex.m
www.eeworm.com/read/480149/6677908
m sort_complex.m
www.eeworm.com/read/479760/6687107
m awgn_complex.m
www.eeworm.com/read/409142/11345192
m sort_complex.m
www.eeworm.com/read/405676/11459426
java complex_number.java
package ex4_fast_fourier_transform;
public class Complex_number {
double real;
double imagi;
public Complex_number() {
real = 0;
imagi = 0;
}
public Complex_number(double x, dou
www.eeworm.com/read/401452/11557574
txt array-complex.txt
const c=3;
var b(1:c),a,d;
begin
read(a);
read(d);
read(b(a));
read(b(b(a)+d));
write(b(3));
end.
www.eeworm.com/read/158370/11623086
h complex2.h
// complex.h Improved Complex class with constructors
class Complex
{ public :
Complex () { }; // default constructor
Complex (float initreal, float initimag); // constructor
voi