代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/102394/15784078
c zsolve_init.c
/* poly/zsolve_init.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General
www.eeworm.com/read/101061/15855063
h blas1++.h
// LAPACK++ (V. 1.1)
// (C) 1992-1996 All Rights Reserved.
#ifndef _BLAS1_PP_H_
#define _BLAS1_PP_H_
#include "blas1.h"
#ifdef _LA_VECTOR_COMPLEX_H_
COMPLEX Blas_U_Dot_Prod(const LaVec
www.eeworm.com/read/216898/14988291
m4 ac_cxx_standard_library.m4
AC_DEFUN([AC_CXX_STANDARD_LIBRARY],[
AC_MSG_NOTICE([
Which library features does your compiler provide?
])
AC_CXX_HAVE_COMPLEX
AC_CXX_HAVE_COMPLEX_FCNS
AC_CXX_HAVE_NUMERIC_LIMITS
AC_CXX_HAVE_CLI
www.eeworm.com/read/37180/899966
cpp c10-7(vc).cpp
//本程序适用于VC++ 6.0
#include
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
Complex operator + (Complex &c2);
frien
www.eeworm.com/read/364259/2906964
cpp c10-7(vc).cpp
//本程序适用于VC++ 6.0
#include
class Complex
{public:
Complex(){real=0;imag=0;}
Complex(double r,double i){real=r;imag=i;}
Complex operator + (Complex &c2);
frien
www.eeworm.com/read/240162/4589518
c 20030903-1.c
/* Derived from PR optimization/11700. */
/* The compiler used to ICE during reload for m68k targets. */
void check_complex (__complex__ double, __complex__ double,
__complex__
www.eeworm.com/read/233448/4683624
c 20030903-1.c
/* Derived from PR optimization/11700. */
/* The compiler used to ICE during reload for m68k targets. */
void check_complex (__complex__ double, __complex__ double,
__complex__
www.eeworm.com/read/366702/2880235
c 20030903-1.c
/* Derived from PR optimization/11700. */
/* The compiler used to ICE during reload for m68k targets. */
void check_complex (__complex__ double, __complex__ double,
__complex__
www.eeworm.com/read/351636/3103977
p cdotc.p
extern C_f cdotc_(complex * ret_val, integer *n, complex *cx, integer *incx, complex *cy, integer *incy);
www.eeworm.com/read/243866/4518829
java testcomplex.java
package com.javapatterns.immutable.complex;
public class TestComplex
{
public static void main(String[] args)
{
Complex c1 = new Complex(10,20);
Complex c2 = new Comp