simple coding, how to write (x-1)...(x-n)
显示 更早的评论
How would i write (x-1)(x-2)....(x-n)
for a given n in matlab
回答(2 个)
Image Analyst
2016-9-5
Try this:
result = 1
for k = 1 : n
result = result * (x - k);
end
2 个评论
ahmed lamak
2016-9-5
Image Analyst
2016-9-5
You can do this:
result = 1
for k = 1 : length(z)
result = result * (x - z(k));
end
The simplest solution, without any loops:
prod(x-z)
2 个评论
Walter Roberson
2016-9-5
I do not understand why you are raising to the z'th power ??
Stephen23
2016-9-5
@Walter Roberson: experimenting around, and not paying enough attention to the copy-and-paste :(
类别
在 帮助中心 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!