max

種類メソッド
書式 Math.max(値1,値2)
解説
2つの値を比較し大きい値を返します。
サンプルコード
n = inputs[0];
outputs[0] = Math.max(n,0.5);
実際のスクリプトをダウンロード