PowerLanguage style/speed/profiling

Questions about MultiCharts and user contributed studies.
bibulous
Posts: 56
Joined: 16 Apr 2010
Has thanked: 17 times
Been thanked: 2 times

PowerLanguage style/speed/profiling

Postby bibulous » 19 Aug 2010

Hi,

I am wondering what is from a computation time point of view the best way to deal with inputs. For example:

Code: Select all

inputs: inputA(1), inputB(2);
variables: a(0), b(0);

once begin
a = inputA;
b = inputB;
end;
Does it make a difference from a performance point of view to rather use "a" and "b" or "inputA" and "inputB"? Or will it be optimized anyway?
Is there a good way to profile PowerLanguage scripts or is printing the only option?

Marc

Return to “MultiCharts”