matlab求极限例题精品课件下载.docxVIP

  • 6
  • 0
  • 约小于1千字
  • 约 2页
  • 2023-08-04 发布于广东
  • 举报
matlab求极限例题 limit函数调用 limit(f,x,a) 返回f表达式关于x趋近于a的极限 limit(f,a) 跟上面一样,只是默认x趋近于a limit(f) 由于没有别的参数,默认x趋近于0 limit(f,x,a,left) 表示返回x趋近于a的左极限 limit(f,x,a,right) 表示返回x趋近于a的右极限 实例1 f = sin ? ( x ) x f = \frac{{\sin \left( x \right)}}{x} f=xsin(x)? %极限案例一 clear all clc syms x f = sin(x)/x limit(f,x,0) 返回结果:极限为1 实例2 f = 1 x f = \frac{1}{x} f=x1? clear all clc syms x f = 1/x limit(f,x,0,right) limit(f,x,0,left) 返回结果:(注:inf → ∞ \to\infty →∞) 实例3 当 lim ? x → 1 y , y → ∞ \mathop {\lim }\limits_{x \to \frac{1}{{\sqrt y }},y \to \infty } x→y?1?,y→∞lim? f = e 1 x 2 ? y 2 f = {e^{\frac{1}{{{x^2} - {y^2}}}}} f

文档评论(0)

1亿VIP精品文档

相关文档