With the following code segment ;
limit((sin(z+h)-sin(z))/h,h,0)
matlab gives the result cos(z). (which is the differential of the sin(z)).
However, with the code ;
limit((sinh(z+h)-sinh(z))/h,h,0)
matlab gives an absurd result;
limit((sinh(z+h)-sinh(z))/h,h = 0)
newertheless, the...