how to do summation using syms matlab inbuilt function for below equation
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dr. P. PRAVEEN KUMAR
le 27 Mar 2019
Commenté : Walter Roberson
le 28 Mar 2019
how to use syms matlab summation function for following equation

0 commentaires
Réponse acceptée
Plus de réponses (1)
Dr. P. PRAVEEN KUMAR
le 28 Mar 2019
1 commentaire
Walter Roberson
le 28 Mar 2019
I would not use either.
Your image uses k (lower-case) with k being multiples of 5. If you were to use k (lower-case) in your symsum then a reader would have a right to expect that your k (lower-case) had the same purpose as the k from the image, namely that it should be restricted to being multiples of 5. Therefore I use a different symbol, K (upper-case) that gets consecutive values, and which the formula transforms to get the needed k.
I would not syms j because in the image, since no information has been given that j might be something else, we can assume that j is the imaginary unit being used in its engineering notation. If j is intended to be something else, then the result of the summation would be quite different.
There are other ways of writing the expression that would use syms k, such as
syms k
sum( subs(1/(1+j)^k, k, [0 5 10 15]) )
or
sum( 1./(1+j).^[0 5 10 15] )
Voir également
Catégories
En savoir plus sur Logical 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!