MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getNumericArray

Method getNumericArray

ij/src/main/java/ij/macro/Functions.java:711–717  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

709 }
710
711 double[] getNumericArray() {
712 Variable[] a1 = getArray();
713 double[] a2 = new double[a1.length];
714 for (int i=0; i<a1.length; i++)
715 a2[i] = a1[i].getValue();
716 return a2;
717 }
718
719 String[] getStringArray() {
720 Variable[] a1 = getArray();

Callers 7

getFirstArrayMethod · 0.95
getNextArrayMethod · 0.95
getLastArrayMethod · 0.95
makeSelectionMethod · 0.95
addToPlotMethod · 0.95
setMultipleIndexesMethod · 0.95
fitCurveMethod · 0.95

Calls 2

getArrayMethod · 0.95
getValueMethod · 0.45

Tested by

no test coverage detected