代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/233522/4667568
h vnl_complex_eigensystem.h
#ifndef vnl_complex_eigensystem_h_
#define vnl_complex_eigensystem_h_
//:
// \file
// \brief Calculates eigenvalues and eigenvectors of a square complex matrix
// \author fsm
//
// \verbat
www.eeworm.com/read/233522/4667596
cxx vnl_complex_eigensystem.cxx
// This is vxl/vnl/algo/vnl_complex_eigensystem.cxx
/*
fsm
*/
#include "vnl_complex_eigensystem.h"
#include
#include
#include
#i
www.eeworm.com/read/233522/4667783
h vcl_complex_fwd.h
//-*- c++ -*-------------------------------------------------------------------
#ifndef vcl_complex_fwd_h_
#define vcl_complex_fwd_h_
/*
fsm \and awf@robots.ox.ac.uk
*/
// Purpose: Forward
www.eeworm.com/read/233522/4667790
h vcl_complex_fwd.h
#ifndef vcl_win32_complex_fwd_h_
#define vcl_win32_complex_fwd_h_
// forward declare the native std::complex :
namespace std { template class complex; }
#ifndef vcl_complex
# defin
www.eeworm.com/read/233522/4667825
h vcl_complex_fwd.h
#ifndef vcl_borland_complex_fwd_h_
#define vcl_borland_complex_fwd_h_
#include
#endif // vcl_borland_complex_fwd_h_
www.eeworm.com/read/233522/4667833
h vcl_complex_fwd.h
#ifndef vcl_sunpro_complex_fwd_h_
#define vcl_sunpro_complex_fwd_h_
// forward declare the native std::complex :
namespace std { template class complex; }
# define vcl_complex std::
www.eeworm.com/read/233522/4667890
h vcl_complex_fwd.h
#ifndef vcl_win32_vc60_complex_fwd_h_
#define vcl_win32_vc60_complex_fwd_h_
// forward declare the native std::complex :
namespace std { template class complex; }
#ifndef vcl_comple
www.eeworm.com/read/233448/4681605
f90 complex_write.f90
! { dg-do run }
! pr 19071
! test case provided by
! Thomas.Koenig@online.de
program cio
complex a
real r1,r2
a = cmplx(1.0, 2.0)
open(unit
www.eeworm.com/read/233448/4681678
f90 reshape-complex.f90
! { dg-do run }
! PR 21127: Reshape of complex didn't work.
program main
complex, dimension(8) :: b
complex, dimension(2,2) :: a
integer :: i
b = (/(i,i=1,8)/)
a = reshape(b(1:8:2),shape(a)
www.eeworm.com/read/233448/4681950
c complex-1-lib.c
extern int inside_main;
extern void abort (void);
#ifdef __OPTIMIZE__
#define ABORT_INSIDE_MAIN do { if (inside_main) abort (); } while (0)
#else
#define ABORT_INSIDE_MAIN do { } while (0)
#endif
sta