org.ujmp.core.Matrix.setAsInt()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(128)

本文整理了Java中org.ujmp.core.Matrix.setAsInt()方法的一些代码示例,展示了Matrix.setAsInt()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Matrix.setAsInt()方法的具体详情如下:
包路径:org.ujmp.core.Matrix
类名称:Matrix
方法名:setAsInt

Matrix.setAsInt介绍

暂无

代码示例

代码示例来源:origin: ujmp/universal-java-matrix-package

public void setInt(int value, long coordinates) {
  getSource().setAsInt(value, coordinates);
}

代码示例来源:origin: jdmp/java-data-mining-package

for (int row = 0; row < 28; row++) {
  for (int col = 0; col < 28; col++) {
    input.setAsInt(gis1.read(), row, col);

代码示例来源:origin: ujmp/universal-java-matrix-package

public final Matrix calcOrig() {
  if (!Coordinates.equals(getSource().getSize(), getSize())) {
    throw new RuntimeException(
        "Cannot change Matrix size. Use calc(Ret.NEW) or calc(Ret.LINK) instead.");
  }
  for (long[] c : getSource().allCoordinates()) {
    getSource().setAsInt(getInt(c), c);
  }
  getSource().fireValueChanged();
  return getSource();
}

代码示例来源:origin: ujmp/universal-java-matrix-package

result.setAsInt(++count, row, i);

代码示例来源:origin: ujmp/universal-java-matrix-package

int s = extractSize(allmeans.getColumnLabel(c));
if (allmeans.getLabel().contains("tall")) {
  valueCount.setAsInt(s * s / 2, 0, c);
} else {
  valueCount.setAsInt(s * s, 0, c);

相关文章

Matrix类方法