How to display all valid results when converting fraction form to decimal form? Specifically when the fraction expression includes roots of negative numbers.
3 次查看(过去 30 天)
显示 更早的评论
For example, (-1)^(1/3)+2 is something what I got from subsituting varibles into a symbolic equation, and I would like to see all the complex results and eliminate ones that have imaginary components.
0 个评论
回答(1 个)
Gargi Patil
2021-4-15
The following code returns all the roots of (-1)^(1/3)+2:
allRoots = 2 + roots([1 0 0 1]);
The following code returns the real root for the expression (-1)^(1/3)+2:
realRoots = 2 + nthroot(-1, 3);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sources and Sinks 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!