Least-squares circle fitting: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 8: Line 8:
   co = 4*Math.cos(angle);
   co = 4*Math.cos(angle);
   si = 4*Math.sin(angle);
   si = 4*Math.sin(angle);
   p.push(brd.create('point',[co, si], {withLabel:false});
   p.push(brd.create('point',[co, si], {withLabel:false}));
}
}



Revision as of 15:30, 5 November 2010

Catgegory:Statistics