In gradient descent algorithms (especially when talking about multivariate regression), when they are talking about the gradient at a given point, sometimes I find the notation: $\nabla f(x_n)$ and sometimes it is the notation: $\frac{\partial}{\partial x_n} f$
For example:
- Wikipedia says: $x_{n+1} = x_n - \alpha \nabla f(x_n) $
- Andrew Ng (on Coursera) says: $\theta_j = \theta_j - \alpha \frac{\partial}{\partial \theta_j} J (\theta)$
So I was wondering if the two are the same, or if there differences when we should use one notation over the other.