Symbolic Toolbox Integration Error

8 ビュー (過去 30 日間)
Dan Lamone
Dan Lamone 2019 年 9 月 22 日
コメント済み: Dan Lamone 2019 年 9 月 22 日
Trialing the symbolic toolbox and attempting to run the 'Indefinite Integral of Univariate Expression' example from the int function documentation. Copy and pasting the exact code and recieve the following:
syms x
expr = -2*x/(1+x^2)^2;
F = int(expr)
--------
Error using sym/subsindex (line 855)
Invalid indexing or function definition. Indexing must follow MATLAB indexing. Function arguments must be symbolic variables, and function body must be sym expression.
-----------
Is this a settings error? Demo/trial error? The symbolic differentiation tool works just fine. Many thanks for your help!

採用された回答

madhan ravi
madhan ravi 2019 年 9 月 22 日
You probably have a variable named int, clear that workspace using:
clear int
%or
clear all
  1 件のコメント
Dan Lamone
Dan Lamone 2019 年 9 月 22 日
Thank you. Clear all did the trick. Cheers.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAssumptions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by