vexpr module with multiple hot inlets?
May 20 2017 | 9:52 pm
Is there a way to force both inlets to be hot on the vexpr module?

- May 20 2017 | 10:30 pma trigger used in combination with a zl.reg or alternatively inverting the operators within the vexpr should work in most cases if you post a specific case I can take a look...
- May 20 2017 | 11:07 pmthanks. I need both inlets to be hot so I can calulate the addition of list data elements that come in on either inlet. Specifically, I have streams of RGB values being sent as 3 part lists from two locations.
- May 21 2017 | 3:16 amsomething of the like?
- May 21 2017 | 3:39 amI don't think so. I have two separate RGB streams that are lists (f,f,f). I need to add the first R float to the second R float, first G float to second G float, and first B float to second B float. And I need it to add and output the resulting list whenever data is present from either stream.
- May 21 2017 | 7:17 am[trigger b l]
- May 21 2017 | 8:06 amthank you, doubleug. so simple.
- May 21 2017 | 1:50 pmmy solution works just as well, I suggested the join object with triggers -1 so that in case you want more than two hot inlets you can do so easily. also join takes all kinds of variables i,f, s or l so it is more flexible
- May 21 2017 | 4:59 pmthanks, Michelez