Could anyone help me to solve the error in the following code
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Walter Roberson
2018 年 9 月 5 日
>> syms n k
>> symsum(nchoosek(n,k),k,0,n)
ans =
2^n
>> subs(ans, n, 4)
3 件のコメント
Walter Roberson
2018 年 9 月 5 日
syms n k
f = symsum(nchoosek(n,k),k,0,n);
subs(f, n, [4 5 6 7])
その他の回答 (1 件)
GK
2018 年 9 月 5 日
3 件のコメント
GK
2018 年 9 月 5 日
Could you share your code or example of it. Also I want to know, if its series is finite or infinity?
Walter Roberson
2018 年 9 月 5 日
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.
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!