Could anyone help me to solve the error in the following code
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
code:
syms n k
n=4
k=0
symsum(nchoosek(n,k),k,0,n)
If i run the code it gives error stating Undefined function 'symsum' for input arguments of type 'double'.
Could anyone help me how to overcome it.
0 commentaires
Réponse acceptée
Walter Roberson
le 5 Sep 2018
>> syms n k
>> symsum(nchoosek(n,k),k,0,n)
ans =
2^n
>> subs(ans, n, 4)
3 commentaires
Walter Roberson
le 5 Sep 2018
syms n k
f = symsum(nchoosek(n,k),k,0,n);
subs(f, n, [4 5 6 7])
Plus de réponses (1)
GK
le 5 Sep 2018
3 commentaires
GK
le 5 Sep 2018
Could you share your code or example of it. Also I want to know, if its series is finite or infinity?
Walter Roberson
le 5 Sep 2018
You would not have been able to use
syms n k
without the Symbolic Math toolbox -- not unless you happened to have Maple installed instead.
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!