lim x arrow 4 x^2+3x/x^2-x-12

3 次查看(过去 30 天)
Cassidy Echeman
Cassidy Echeman 2020-6-24
回答: Rasul Khan 2020-6-25
lim x-->4 x^2+3x/x^2-x-12
I have no idea how to input this into MATLAB. Every time I do I get an error.
  1 个评论
John D'Errico
John D'Errico 2020-6-24
What have you tried? Did you read the help for the function limit? Have you looked at the examples in
doc limit
Do you know how to use parentheses? Have you read the getting started tutorials in MATLAB? (Why not?)

请先登录,再进行评论。

回答(1 个)

Rasul Khan
Rasul Khan 2020-6-25
You have to declare x as a symbol. Try it this way
syms x;
f = (x^2 + 3 * x) / (x ^ 2 - x - 12); % your function
result = limit(f , x , 4);

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by