Returns the n-th derivative d of
expressions f with respect to a symbol x.
Examples
// symbol xx=Sym("x")// some expressionsa=Sym("f(x)")b=Sym("x^x")c=Sym("x*log(x)")d=Sym("y*x + z")// matrix of expressionsA=[a,b;c,d]// some derivativesDiff(a,x)Diff(b,x)Diff(A,x)Diff(A,x,2)