Function Composition

Core Sentence / 核心句

Function composition passes the output of one function into another function as its input.

中文理解:复合函数不是普通相乘,而是前一层函数先算出一个结果,再把这个结果送进后一层函数。

Formula / 公式

Flow:

Example / 例子

表示先做 ,再做

注意:

When To Use / 什么时候用

分析函数层级、确定 outer/inner function、使用 Chain Rule 时使用。

Watch Out / 易错点

函数的执行顺序不能交换。先识别最外层 operation,再沿层级向内拆。

Search and Source Mentions / 搜索与出现位置

Mentioned In / 出现位置

Connected Notes / 连接