Package ij.measure

Examples of ij.measure.ResultsTable.addValue()


    for (int row=0; row<max; row++) {
      rt.incrementCounter();
      for (int i=0; i<sets; i++) {
        float[] x = (float[])plot.storedData.get(i*2);
        float[] y = (float[])plot.storedData.get(i*2+1);
        if (row<x.length) rt.addValue("x"+i, x[row]);
        if (row<y.length) rt.addValue("y"+i, y[row]);
      }
    }
    return rt;
  }
View Full Code Here


      rt.incrementCounter();
      for (int i=0; i<sets; i++) {
        float[] x = (float[])plot.storedData.get(i*2);
        float[] y = (float[])plot.storedData.get(i*2+1);
        if (row<x.length) rt.addValue("x"+i, x[row]);
        if (row<y.length) rt.addValue("y"+i, y[row]);
      }
    }
    return rt;
  }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.