代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/291752/8398927

h complex_io.h

// // file = complex_io.h // #ifndef _COMPLEX_IO_H_ #define _COMPLEX_IO_H_ #include #include using std::complex; using namespace std; // fstream& operator
www.eeworm.com/read/291752/8399099

cpp complex_io.cpp

// // file = complex_io.cpp // #include #include #include "complex_io.h" using namespace std; ostream& operator
www.eeworm.com/read/389823/8497045

m complex_awgn.m

function [ WaveformRay ] = complex_awgn(FadedWaveform,N0) if nargin ~= 2 error('Insufficient input parameters'); end Len = length(FadedWaveform); m = 0; randn('state',sum(100*clock)); u1 = m + sqrt
www.eeworm.com/read/188584/8526829

txt test_complex.txt

if a>8+3*d+6 | 3>4 & e
www.eeworm.com/read/432935/8562141

asv plot_complex.asv

% plot_complex.m % plot函数绘制复数曲线示例 % 产生一维自变量向量 t=[0:0.1:5]'; % 产生需要绘制的复数矩阵 y=t+exp(1/3*t).*sin(2*t+3)*i; real_y=real(); imag_y=exp(1/3*t).*sin(2*t+3); % 绘制曲线 subplot(1,2,1); plot(y); axis([0
www.eeworm.com/read/432935/8562152

m plot_complex.m

% plot_complex.m % plot函数绘制复数曲线示例 % 产生一维自变量向量 t=[0:0.1:5]'; % 产生需要绘制的复数矩阵 y=t+exp(1/3*t).*sin(2*t+3)*i; real_y=real(y); imag_y=imag(y); % 绘制曲线 subplot(1,2,1); plot(y); axis([0 5 -4 3]); xl
www.eeworm.com/read/432640/8585053

h mtl_complex.h

#include /* namespace polution from */ #undef major #undef minor
www.eeworm.com/read/287619/8678577

m rec_complex.m

function [rec,lse] = rec_complex (theta,NF,N) % =================================================================== % function [rec,lse] = rec_complex (theta,NF,N) % ---------------------------------
www.eeworm.com/read/386765/8728125

java complex1.java

public class Complex { private double real,im; //实部,虚部 public Complex(double a, double b) { this.real = a; this.im = b; } public Complex add(Complex b)
www.eeworm.com/read/385658/8793751

m awgn_complex.m