I have two TableFunctions f1: arguments1 -> values1 and f2: arguments2 -> values2 given via their arguments[] and values[] arrays. I want to link them to a new TableFunction g, so that: The arguments of g shall be: arguments1 + 0.5 * arguments2 The values of g shall be: min{values1, values2}.
Is there any way to implement it via code? I tried to do that, however, I always have the problem that when forming a cartesian product, duplicates will arise.
try this, assuming you have 2 table functions of the same size called t2 and t4, and your new table function is newT:
You can do this on the startup of your simulation (note that i arbitrarily chose linear interpolation to the nearest value if out of range)