complex.cpp
来自「fft代码。正常运行」· C++ 代码 · 共 13 行
CPP
13 行
// complex.cpp - impelementation of class
// of complex number
//
// The code is property of LIBROW
// You can use it on your own
// When utilizing credit LIBROW site
// Include header file
#include "complex.h"
// Imaginary unity constants
const complex complex::i(0., 1.);
const complex complex::j(0., 1.);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?