Problem with simplify(x^(1/log(x)).
古いコメントを表示
>> sym x;
>> assume(x>0)
>> simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
>> ans = x^(1/log(x))
Note that x^(1/log(x))=e. Why won't this expression simplify?
1 件のコメント
syms x a;
assume(x>0)
x=exp(a)
simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Special Values についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
