How can I sum the elements of a symbolic vector?
2 次查看(过去 30 天)
显示 更早的评论
Hello,
I have a symbolic vector X = [1, x1, x2, x1^2, x2^2, x1*x2], where x1 and x2 are symbols. I want to sum the vector so that it looks like: SUM = 1 + x1 + x2 + x1^2 + x2^2 + x1*x2, that is, in the same order as in X. When I do SUM = sum(X), it gives: SUM = x1^2 + x1*x2 + x1 + x2^2 + x2 + 1.
It is possible by converting X into char first, and then replace the comma (,) by a plus (+). But I wonder if there is an easy way to do this.
Thanks in advance.
0 个评论
采纳的回答
Azzi Abdelmalek
2014-12-8
syms x1 x2
X = [1, x1, x2, x1^2, x2^2, x1*x2],
out=char(X(1))
for k=2:numel(X)
out=[out '+' char(X(k))]
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numbers and Precision 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!