matlab 的lower limit怎么调

matlab 的lower limit怎么调

这个函数是符号工具箱里的,表达式变量必须是符号类型: >> syms x >> limit( 1/x, x, 0, 'left' ) ans = -Inf >> limit( 1/x, x, 0, 'right' ) ans = Inf x从左趋近0是负无穷,右趋近0是正无穷。