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

Method showSimplex

ij/src/main/java/ij/measure/Minimizer.java:835–839  ·  view source on GitHub ↗
(double[][] simp, String heading)

Source from the content-addressed store, hash-verified

833
834 // Display simplex [Iteration: s0(p1, p2....), s1(),....] in Log window
835 private synchronized void showSimplex(double[][] simp, String heading) {
836 IJ.log("Minimizer: "+heading);
837 for (int i = 0; i < numVertices; i++)
838 showVertex(simp[i], null);
839 }
840 private synchronized void showVertex(double[] vertex, String heading) {
841 if (heading != null)
842 IJ.log(heading);

Callers 1

makeSimplexMethod · 0.95

Calls 2

logMethod · 0.95
showVertexMethod · 0.95

Tested by

no test coverage detected