18double PulseWave(
const double freq,
const double phase,
const double time);
19double PulseWave(
const double freq,
const double phase,
const double time,
const double starttime);
28void PulseWave(
const double freq,
const double phase,
const double time, Matrix<1,M>& output){
29 double r =
sin(2.0*M_PI*freq*time + phase);
44Matrix<1,M> PulseWaveVec(
const double freq,
const double phase,
const double time){
46 PulseWave(freq, phase, time, ret);
constexpr void sin(const ArcsMat< M, N, T > &U, ArcsMat< P, Q, R > &Y)
行列要素の正弦関数を計算する関数(引数渡し版)
Definition ArcsMatrix.hh:4210
static constexpr Matrix ones(void)
m行n列の要素がすべて1の行列を返す関数
Definition Matrix.hh:655
static constexpr Matrix zeros(void)
m行n列の零行列を返す関数
Definition Matrix.hh:648