Can you point me to areas and methods that deals with modeling output from input data? Say we think our output depends on certain parameters, and say we have samples of this output versus time and samples of the parameters versus time, but we don't know how the two relate. More specifically, consider the following:
$ f \in \mathbb{R}^m $ and $A \in \mathbb{R}^{m \times n} $
Using least squares, we may find $ x \in \mathbb{R}^n $ such that $ \| f - Ax\|_2 $ is minimized. But what other ways are there to model this relationship, if, for example, we don't believe it is linear?
Thanks.