Problem with simplify(x^(1/log(x)).
7 次查看(过去 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!