Hi Kiran,
Use a context type UDF with two arguments:
inp1 -> first context
inp2 -> second context
Here is the code:
for(int a=0;a<inp1.length;a++){ for(int b=0;b<inp2.length;b++){ result.addValue(inp2[b]); } }
Regards,
Mark
Hi Kiran,
Use a context type UDF with two arguments:
inp1 -> first context
inp2 -> second context
Here is the code:
for(int a=0;a<inp1.length;a++){ for(int b=0;b<inp2.length;b++){ result.addValue(inp2[b]); } }
Regards,
Mark