HomeSort by relevance Sort by last modified time
    Searched defs:nCols (Results 1 - 15 of 15) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
Covariance.java 267 int nCols = matrix.getColumnDimension();
268 if (nRows < 2 || nCols < 2) {
271 nRows, nCols);
PearsonsCorrelation.java 278 int nCols = matrix.getColumnDimension();
279 if (nRows < 2 || nCols < 2) {
282 nRows, nCols);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
ChiSquareTestImpl.java 155 int nCols = counts[0].length;
159 double[] colSum = new double[nCols];
162 for (int col = 0; col < nCols; col++) {
173 for (int col = 0; col < nCols; col++) {
  /external/aac/libSBRdec/src/
lpp_tran.h 172 UCHAR nCols; /*!< number subsamples of a codec frame */
221 const int nCols,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealMatrix.java 155 final int nCols = m.getColumnDimension();
157 final RealMatrix out = createMatrix(nRows, nCols);
159 for (int col = 0; col < nCols; ++col) {
381 final int nCols = subMatrix[0].length;
382 if (nCols == 0) {
387 if (subMatrix[r].length != nCols) {
390 nCols, subMatrix[r].length);
397 MatrixUtils.checkColumnIndex(this, nCols + column - 1);
400 for (int j = 0; j < nCols; ++j) {
414 final int nCols = getColumnDimension()
    [all...]
Array2DRowFieldMatrix.java 119 final int nCols = d[0].length;
120 if (nCols == 0) {
125 if (d[r].length != nCols) {
127 LocalizedFormats.DIFFERENT_ROWS_LENGTHS, nCols, d[r].length);
269 final int nCols = m.getColumnDimension();
271 final T[][] outData = buildArray(getField(), nRows, nCols);
275 for (int col = 0; col < nCols; col++) {
324 final int nCols = subMatrix[0].length;
325 if (nCols == 0) {
329 data = buildArray(getField(), subMatrix.length, nCols);
    [all...]
Array2DRowRealMatrix.java 128 final int nCols = d[0].length;
129 if (nCols == 0) {
134 if (d[r].length != nCols) {
136 LocalizedFormats.DIFFERENT_ROWS_LENGTHS, nCols, d[r].length);
277 final int nCols = m.getColumnDimension();
279 final double[][] outData = new double[nRows][nCols];
283 for (int col = 0; col < nCols; col++) {
332 final int nCols = subMatrix[0].length;
333 if (nCols == 0) {
337 data = new double[subMatrix.length][nCols];
    [all...]
MatrixUtils.java 334 final int nCols = rowData.length;
335 final RealMatrix m = createRealMatrix(1, nCols);
336 for (int i = 0; i < nCols; ++i) {
354 final int nCols = rowData.length;
355 if (nCols == 0) {
358 final FieldMatrix<T> m = createFieldMatrix(rowData[0].getField(), 1, nCols);
359 for (int i = 0; i < nCols; ++i) {
377 final int nCols = rowData.length;
378 final BigDecimal[][] data = new BigDecimal[1][nCols];
379 for (int i = 0; i < nCols; ++i)
    [all...]
RealMatrixImpl.java 129 final int nCols = d[0].length;
130 if (nCols == 0) {
134 if (d[r].length != nCols) {
137 nCols, d[r].length);
278 final int nCols = m.getColumnDimension();
280 final double[][] outData = new double[nRows][nCols];
284 for (int col = 0; col < nCols; col++) {
334 final int nCols = subMatrix[0].length;
335 if (nCols == 0) {
338 data = new double[subMatrix.length][nCols];
    [all...]
AbstractFieldMatrix.java 247 final int nCols = m.getColumnDimension();
249 final FieldMatrix<T> out = createMatrix(nRows, nCols);
251 for (int col = 0; col < nCols; ++col) {
407 final int nCols = subMatrix[0].length;
408 if (nCols == 0) {
413 if (subMatrix[r].length != nCols) {
416 nCols, subMatrix[r].length);
423 checkColumnIndex(nCols + column - 1);
426 for (int j = 0; j < nCols; ++j) {
438 final int nCols = getColumnDimension()
    [all...]
BigMatrixImpl.java 161 final int nCols = d[0].length;
162 if (nCols == 0) {
166 if (d[r].length != nCols) {
169 nCols, d[r].length);
194 final int nCols = d[0].length;
195 if (nCols == 0) {
199 if (d[row].length != nCols) {
202 nCols, d[row].length);
224 final int nCols = d[0].length;
225 if (nCols == 0)
758 final int ncols = this.getColumnDimension(); local
794 final int ncols = this.getColumnDimension(); local
813 final int ncols = this.getColumnDimension(); local
    [all...]
BlockFieldMatrix.java     [all...]
BlockRealMatrix.java     [all...]
  /external/opencv/cxcore/include/
cxtypes.h 414 int nCols;
425 int nCols;
    [all...]
  /prebuilts/tools/common/m2/repository/xhtmlrenderer/xhtmlrenderer/R8rc1/
xhtmlrenderer-R8rc1.jar 

Completed in 697 milliseconds