代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/384879/2596637
c showcabs.c
#include
#include
void main (void)
{
struct complex complex_number;
complex_number.x = 10;
complex_number.y = 5;
printf("Absolute value of 10,5 is %f\n",
www.eeworm.com/read/366702/2871498
c p991.c
// { dg-do assemble }
// prms-id: 991
class Complex {
public:
double re;
double im;
Complex(double r,double i) : re(r), im(i) {}
};
Complex cos(const Complex&);
extern "C" double cos (double);
www.eeworm.com/read/355768/3048198
c showcabs.c
#include
#include
void main (void)
{
struct complex complex_number;
complex_number.x = 10;
complex_number.y = 5;
printf("Absolute value of 10,5 is %f\n",
www.eeworm.com/read/257673/4361658
c showcabs.c
#include
#include
void main (void)
{
struct complex complex_number;
complex_number.x = 10;
complex_number.y = 5;
printf("Absolute value of 10,5 is %f\n",
www.eeworm.com/read/216502/4891964
c r_imag.c
#include "complex"
double r_imag(z)
complex *z;
{
return(z->imag);
}
www.eeworm.com/read/366702/2882593
c pr27773.c
/* { dg-do compile } */
_Complex float f(_Complex float a, float b)
{
return a - a*b;
}
www.eeworm.com/read/288961/3997417
java complexservice.java
package org.codehaus.xfire.services;
import org.codehaus.xfire.services.ns1.Complex1;
public class ComplexService
{
public Complex1 getComplex1()
{
Complex1 c1 = new Complex1();
www.eeworm.com/read/291752/8399445
cpp spec_estim.cpp
//
// File = samp.cpp
//
#include
#include
#include
#include "fft_T.h"
#include "spec_estim.h"
using std::complex;
//+++++++++++++++++++++++++++++++++++
www.eeworm.com/read/290260/8492249
cpp fft.cpp
#ifndef FFT_CPP
#define FFT_CPP
#include
#define PI 3.1415926
#include "Complex.h"
#include "fft.h"
int Pow(int q ,int m)//int 型别数据求幂
{
int res;
res = 1;
while (m != 0)
{
www.eeworm.com/read/389823/8497027
m testvsdv.m
clear;
clc;
codes = [1,-1,1,-1];
i = [1,0,0,1,0,1];
q = [0,0,1,0,1,0];
[I_SymbolsTx,Q_SymbolsTx] = QPSKEncoder(i,q)
[Complex_WaveformTx,sprd_code] = OVSFSpread(I_SymbolsTx,Q_SymbolsTx,2,2);
S