當前位置: 首頁>>代碼示例>>Java>>正文


Java Utils.padRight方法代碼示例

本文整理匯總了Java中weka.core.Utils.padRight方法的典型用法代碼示例。如果您正苦於以下問題:Java Utils.padRight方法的具體用法?Java Utils.padRight怎麽用?Java Utils.padRight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在weka.core.Utils的用法示例。


在下文中一共展示了Utils.padRight方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: toString

import weka.core.Utils; //導入方法依賴的package包/類
/**
 * Converts a matrix to a string. (FracPete: taken from old weka.core.Matrix
 * class)
 * 
 * @return the converted string
 */
@Override
public String toString() {
  // Determine the width required for the maximum element,
  // and check for fractional display requirement.
  double maxval = 0;
  boolean fractional = false;
  Object element = null;
  int widthNumber = 0;
  int widthExpression = 0;
  for (int i = 0; i < size(); i++) {
    for (int j = 0; j < size(); j++) {
      element = getCell(i, j);
      if (element instanceof Double) {
        double current = ((Double) element).doubleValue();

        if (current < 0)
          current *= -11;
        if (current > maxval)
          maxval = current;
        double fract = Math.abs(current - Math.rint(current));
        if (!fractional && ((Math.log(fract) / Math.log(10)) >= -2)) {
          fractional = true;
        }
      } else {
        if (element.toString().length() > widthExpression) {
          widthExpression = element.toString().length();
        }
      }
    }
  }
  if (maxval > 0) {
    widthNumber =
      (int) (Math.log(maxval) / Math.log(10) + (fractional ? 4 : 1));
  }

  int width = (widthNumber > widthExpression) ? widthNumber : widthExpression;

  StringBuffer text = new StringBuffer();
  for (int i = 0; i < size(); i++) {
    for (int j = 0; j < size(); j++) {
      element = getCell(i, j);
      if (element instanceof Double) {
        text.append(" ").append(
          Utils.doubleToString(((Double) element).doubleValue(), width,
            (fractional ? 2 : 0)));
      } else {
        int diff = width - element.toString().length();
        if (diff > 0) {
          int left = diff % 2;
          left += diff / 2;
          String temp =
            Utils.padLeft(element.toString(), element.toString().length()
              + left);
          temp = Utils.padRight(temp, width);
          text.append(" ").append(temp);
        } else {
          text.append(" ").append(element.toString());
        }
      }
    }
    text.append("\n");
  }

  return text.toString();
}
 
開發者ID:mydzigear,項目名稱:repo.kmeanspp.silhouette_score,代碼行數:72,代碼來源:CostMatrix.java


注:本文中的weka.core.Utils.padRight方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。