Hello, Everyone.
Need help with creating a function L_(X,Y) with output as the above. (green highlight)
Thanks in advance for your time and help.
Regards. Loi.
Message was edited by: Loi Le
Solved! Go to Solution.
Loi Le wrote:
Hello, Everyone.
Need help with creating a function L_(X,Y) with output as the above. (green highlight)
Hi Loi,
The problem with your function L_ is that it modifies Yj when k=1, so the new value gets propagated into the k=2 iteration. There are a couple of ways round it: assign Yj to a new variable at the start of each i,j loop or use your existing function L as a local function.
Stuart
Loi Le wrote:
Hello, Everyone.
Need help with creating a function L_(X,Y) with output as the above. (green highlight)
Hi Loi,
The problem with your function L_ is that it modifies Yj when k=1, so the new value gets propagated into the k=2 iteration. There are a couple of ways round it: assign Yj to a new variable at the start of each i,j loop or use your existing function L as a local function.
Stuart
I got it. . Many, many thanks for time and help, Stuart.
Regards. Loi.
No worries, Loi. I like to keep an eye on your posts and look at the interesting results you get.
Stuart