I'm currently doing a project that takes an input from the serial monitor in the processing compiler, converts it into a pulse sequence and transmits that to a distant receiver. It's quite easy to accomplish it with just a great dear of repetitive code but I hate doing that. The problem I'm currently having is that I want to make an array which contains numerous methods, but I cannot figure out how to do it!
E.g. Float array[] = { method1(), method2(), ....... } ;
I am constantly getting error messages with identifier I try. Im looking to find this out as it cuts out about 70 - 80 lines of repetitive stuff.
For anyone who doesn't know what processing is, it's a C based language used to programme the arduino micro-controllers.

Thanks!