I have a cell array of anonymous function handles, and would like to create one anonymous function that returns the vector containing the output of each function.
What I have:
ca = {@(X) f(X), @(X)g(X), ...}
What I want:
h = @(X) [ca{1}(X), ca{2}(X), ...]