代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/101062/6257479
sed complex_unary.sed
#!/bin/sh
# useful for emacs -*- sh -*-
# ########################################################################
# automatically generate functions decl
www.eeworm.com/read/101062/6257484
h complex_unary.h
// ------------------------------------------------------- -*- c++ -*- --
//
// WARNING: FILE AUTOMATICALLY GENERATED WITH complex_unary.sed
//
// -----------------------------------------------------
www.eeworm.com/read/101062/6257485
hxx complex_unary.hxx
// ---------------------------------------------------------- -*- c++ -*-
// scalar unary +
// ----------------------------------------------------------------------
template
struct
www.eeworm.com/read/101062/6257486
h matrix_complex.h
// ------------------------------------------------------- -*- c++ -*- --
//
// WARNING: FILE AUTOMATICALLY GENERATED WITH matrix_complex.sed
//
// ----------------------------------------------------
www.eeworm.com/read/492274/6420421
cpp complex1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/492274/6420422
cpp complex2.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/486925/6521010
java complex1.java
package com.javapatterns.immutable.complex;
final public class Complex1 extends Number
implements java.io.Serializable, Cloneable, Comparable
{
/**
* The imaginary unit.
*/
static fi
www.eeworm.com/read/484893/6575971
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/484893/6575973
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/483958/6588284