How to find the roots of equations in Matlab v7.12
1 次查看(过去 30 天)
显示 更早的评论
how can I find roots for equation x^3=a
where a is a defined variable = 0.3 (a=0.3) and '^' means 'power'
Please help
thanks MissA
0 个评论
回答(2 个)
Muruganandham Subramanian
2012-12-12
编辑:Muruganandham Subramanian
2012-12-12
try this:
a=0.3;
x=nthroot(a,(-1/3));
for more info,
>>help nthroot
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Power and Energy Systems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!