مساعدة من مستخدمي ماتلاب

أرجو إعطائي ال command الخاصة بحل مسائل limit و مسائل diff
أو طرييقة حلها بالماتلاب

اولا يجب عليك التعرف على Symbolic math toolbox
وكيفية عمل symbolic expression

وبعد ذلك يمكنك استخدام الامر الاتى limit
وهذا مثال على الامر السابق

Compute bidirectional limits for the following expressions:
syms x h;
limit(sin(x)/x)
limit((sin(x + h) - sin(x))/h, h, 0)
The results are
ans = 1   
ans = cos(x)

وبالمثل للامر diff وهذا مثال على ذلك

Differentiate the following single-variable expression one time:
syms x; 
diff(sin(x^2))
The result is
ans = 2*x*cos(x^2)

كما يمكنك الاطلاع على المزيد حول هذا التول بوكس والاوامر من خلال الروابط الاتية
http://www.mathworks.de/help/toolbox/symbolic/
http://www.mathworks.de/help/toolbox/symbolic/limit.html
http://www.mathworks.de/help/toolbox/symbolic/diff.html