Info
This question is closed. Reopen it to edit or answer.
How to obtain values symbolically
3 views (last 30 days)
Show older comments
Hi! Im using Matlab version 7.9.0(R2009b) and i would like to sum e.g. first 10 terms of expression c_i*x^i, where c_i should be obtained symbolically. how should i do that, so that this expression is dependent on x / function of x (so when i enter exact number for x, i get real number - not expression with c_i).
0 Comments
Answers (2)
Azzi Abdelmalek
on 22 Feb 2013
Edited: Azzi Abdelmalek
on 22 Feb 2013
EDIT
c=sym('c',[1 10])
x=sym('x')
f=@(x,n)sum(c(1:n).*x.^(1:n))
f(x,5)
8 Comments
Walter Roberson
on 23 Feb 2013
If that is the complete instruction you are given, then the c_i are just the symbolic variables, and you will not be able to complete the second part.
If there are instructions before that point, then you might be able to proceed further.
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!