Search results

  1. P

    Looking for code that draws trend lines or linear regression lines (preferably in C#)

    function BestFit(const AnArray: array of Double): Extended; var n: Integer; b,m: Double; begin n := Length(AnArray); b := BestFitB(AnArray); m := BestFitM(AnArray); Result := b + (m * n); end; function BestFitLn(const AnArray: array of Double): Extended; var n: Integer...
  2. P

    OpeECry API with Delphi

    Has any one got the the OpenECry API to work with the delphi code sample they provide? It compiles with delphi7 and installs its vcl components just fine, but the only event that seem to work is the "logon complete" event. I can logon fine, but when I call the "procedure TOECClient.Subscribe" I...
Back
Top