代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/492796/1171224

java notepad_complex.java

/** * 行编辑 * 设置字体颜色 */ package com.edu.sccp.snail.notepad.beans; /** * @author 小豆包 * @return 字体属性 * @velue 字体属性 * @time 2008-1-7 */ import java.awt.*; import java.io.Serializa
www.eeworm.com/read/483857/1274585

xco complex_mult.xco

# BEGIN Project Options SET flowvendor = Foundation_iSE SET vhdlsim = True SET verilogsim = True SET workingdirectory = C:\work\ISE\c11 SET speedgrade = -12 SET simulationfiles = Behavioral SET asysym
www.eeworm.com/read/470720/1447074

c complex1.c

// Special g++ Options: // This test makes sure that the stuff in lex.c (real_yylex) is // set up to handle real and imag numbers correctly. This test is against // a bug where the compiler was not
www.eeworm.com/read/470720/1448373

f complex_1.f

program complex_1 complex z0, z1, z2 z0 = cmplx(0.,.5) z1 = 1./z0 if (z1 .ne. cmplx(0.,-2)) call abort z0 = 10.*z0 if (z0 .ne. cmplx(0.,5.)) call abort
www.eeworm.com/read/470720/1450283

c complex-2.c

__complex__ double f (__complex__ double x, __complex__ double y) { x += y; return x; } __complex__ double ag = 1.0 + 1.0i; __complex__ double bg = -2.0 + 2.0i; main () { __complex__ double a,
www.eeworm.com/read/470720/1450418

c complex-1.c

double g0 (double x) { return 1.0; } double g1 (double x) { return -1.0; } double g2 (double x) { return 0.0; } __complex__ double cexp (__complex__ double x) { double r; r = g0 (__real_
www.eeworm.com/read/470720/1450545

c complex-5.c

float __complex__ p (float __complex__ a, float __complex__ b) { return a + b; } float __complex__ x = 1.0 + 14.0 * (1.0fi); float __complex__ y = 7.0 + 5.0 * (1.0fi); float __complex__ w = 8.
www.eeworm.com/read/470720/1450602

c complex-4.c

main () { if ((__complex__ double) 0.0 != (__complex__ double) (-0.0)) abort (); if (0.0 != -0.0) abort (); exit (0); }
www.eeworm.com/read/470720/1450689

c complex-3.c

struct complex { float r; float i; }; struct complex cmplx (float, float); struct complex f (float a, float b) { struct complex c; c.r = a; c.i = b; return c; } main () { struct compl