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!
