Problem with simplify(x^(1/log(x)).
3 ビュー (過去 30 日間)
古いコメントを表示
>> 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 件のコメント
jin yong
2023 年 2 月 8 日
syms x a;
assume(x>0)
x=exp(a)
simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
採用された回答
Friedrich
2014 年 9 月 12 日
Hi,
have you tried increasing the number of simplification steps?
>> simplify(x^(1/log(x)),'steps',10)
ans =
exp(1)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!