Login Page - Create Account

Support Board


Date/Time: Mon, 28 Oct 2024 11:20:53 +0000



Post From: ASCIL: 'optional' Index parameter; sc.AutoLoop

[2024-10-02 08:43:05]
User431178 - Posts: 522
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.