Row ====== .. js:function:: ArrayView.Row(r) 指定した行を返す。 ソース ^^^^^^ .. code-block:: js Row(r) { var v = new ArrayView(this.ncol); for (var c = 0; c < this.ncol; c++) { v.dt[c] = this.dt[r * this.ncol + c]; } return v; }