代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/338759/3313118
texi debug.texi
#include
using namespace blitz;
int main()
@{
Array Z(4,4);
Z = complex(0.0, 1.0);
Z(4,4) = complex(1.0, 0.0);
return 0;
@}
www.eeworm.com/read/294145/3919671
makefile
MODULE_NAME = test_synch_complex
DEPENDS = source mapper chest synch rrc_complex block_complex sink
BASE := $(shell pwd | perl -pi -e "s/(.*(SRadio|Main)[^\/]*).*/\1/")
include $(BASE)/Include/module
www.eeworm.com/read/286417/4039447
java sample2_9.java
/*
* 示例程序Sample2_9: Complex类正弦运算
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Complex;
public class Sample2_9
{
public static void main(String[] args)
{
Complex
www.eeworm.com/read/286417/4039479
java sample2_5.java
/*
* 示例程序Sample2_5: Complex类求根运算
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Complex;
public class Sample2_5
{
public static void main(String[] args)
{
Complex
www.eeworm.com/read/286417/4039497
java sample2_3.java
/*
* 示例程序Sample2_3: Complex类除法运算
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Complex;
public class Sample2_3
{
public static void main(String[] args)
{
Complex
www.eeworm.com/read/286417/4039519
java sample2_2.java
/*
* 示例程序Sample2_2: Complex类乘法运算
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Complex;
public class Sample2_2
{
public static void main(String[] args)
{
Complex
www.eeworm.com/read/366702/2880103
c compound-literal-3.c
/* PR C/30265, invalid gimple was produced because we did not mark
the compound literal's decl early enough. */
int f(_Complex float *);
int g(_Complex float x)
{
return f(&(_Complex float){x+1
www.eeworm.com/read/456876/7337860
txt fft2d.txt
/*-------------------------------------------------------------------------
This computes an in-place complex-to-complex FFT
x and y are the real and imaginary arrays of 2^m points.
dir = 1 gives
www.eeworm.com/read/229812/4744983
cpp polar.cpp
#include
void main( void ) {
Complex a (24.98, 30);
cout
www.eeworm.com/read/216502/4891917
c c_abs.c
#include "complex"
float c_abs(z)
complex *z;
{
double cabs();
return( cabs( z->real, z->imag ) );
}