Matlab Symbolic output 'I' - what does it denote?
1 回表示 (過去 30 日間)
古いコメントを表示
I have recently been using the symbolic toolbox to compute a series of partial derivatives for me. The outputs of the computation have non-matlab expressions so when I try to copy and evaluate the expressions I get multiple errors (i can't use 'sub' or or other symbolic toolbox methods of evaluation because it takes too long for my application). I am in the process of changing those expressions to matlab functions (i.e. Im - imag, Re-real) and I have encountered an 'I' term in the output expression. It is not the imaginary 'i' because that also exists in the expression and it is scalar therefore it can't be the identity matrix.....does anyone know what it denotes?
1 件のコメント
Walter Roberson
2011 年 5 月 10 日
I suggest trying matlabFunction() to convert the symbolic expression for you.
採用された回答
Walter Roberson
2011 年 5 月 10 日
"I" is the square root of negative one for the symbolic engine.
If you also have "i" in the expression, you probably had a string which you evaluated by the symbolic engine in which you attempted to use "i" in the string: in strings that are evaluated by the symbolic engine, you need to use "I" instead.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!