Anonymous Functions Can be annoying to have to make a new file for a simple function Anonymous functions allow you to define simple functions in a single line of code Work by creating a function handle without giving a name to the function being created Should use only for very simple functions (preferably with only 1 argument) Examples: quadHandle1 quadHandle2 anonymousTrigFunction display and plot these Show addNoise function. Talk about how second argument takes a function handle Show some code of how to use addNoise. Use simple trig functions via anonymous functions.