matlab求左,右极限怎么求

问题描述:

matlab求左,右极限怎么求
求sqrt(x)-2^(-1/x)的极限,其中x趋于+0
syms x
>> y=sqrt(x)-2^(-1/x);
>> limit(y,x,0)
的结果是NaN

limit(y,x,0,'right')