Support Board
Date/Time: Fri, 22 Nov 2024 21:20:29 +0000
Post From: ASCIL: 'optional' Index parameter; sc.AutoLoop
[2024-10-02 08:43:05] |
User431178 - Posts: 540 |
You need to pass in the index parameter, you cannot omit function parameters (unless they are declared with a default value in your declaration/signature). GetKendallTauCorrelationCoefficient(Array1, Array2, sc.Index, Input_Length.GetInt()); The "indexless" version of scsf_CorrelationCoefficient is an overload with a different signature, it has no index parameter, but instead uses the sc.Index member variable directly. Take a look in file "sierrachart.h" and you will see what is happening. |