-
Notifications
You must be signed in to change notification settings - Fork 89
Markdown Template
wellflat edited this page Feb 9, 2013
·
4 revisions
ここにプロジェクトの概要を書きます。 行末にスペースを2つ入れると 改行されます。
段落を分けるには、空行 を入れます。
インラインのコードは、バッククォート (inline code
) で囲みます。
function f () {
alert(0); /* 先頭に4文字のスペース、
もしくはタブを挿入します */
}
var x1 = [], y1 = [], x2 = [], y2 = [], x3 = [], y3 = [], N = 32;
for(var i=0; i<N; i++){
x1[i] = x2[i] = 6*Math.cos(6*Math.PI*i/N) + 4*Math.sin(18*Math.PI*i/N);
y1[i] = y2[i] = 0.0;
}
FFT.init(N); // 初期化(三角関数テーブル、ビット逆順テーブルの生成)
FFT.fft1d(x2, y2); // 一次元FFT
for(var j=0; j<N; j++) {
x3[j] = x2[j];
y3[j] = y2[j];
}
FFT.ifft1d(x3, y3); // 一次元逆FFT
var out = "";
for(var i=0; i<N; i++){
out += i + ": (" + x1[i] + ", " +y1[i]+ ") (" +
x2[i] + ", " + y2[i] + ") (" + x3[i] + ", " + y3[i] + ")\n";
}
console.log("N: (元データ) (FFT) (逆FFT)");
console.log(out);
リストの間に空行を挟むと、それぞれのリストに <p>
タグが挿入され、行間が
広くなります。
def MyFunction(param1, param2, ...)
-
param1
: パラメータ1 の説明 -
param2
: パラメータ2 の説明
これは引用です。
スペースを挟んで
>
を重ねると、引用の中で引用ができますが、 GitHubの場合、1行前に空の引用が無いと、正しくマークアップされません。
Copyright © 2011 xxxxxx
Licensed under the Apache License, Version 2.0.
Distributed under the MIT License.
Dual licensed under the MIT license and GPL license.