how to make this summation

4 commentaires

John D'Errico
John D'Errico le 18 Déc 2016
With a loop? Note that variables in MATLAB cannot be indexed with negative numbers.
mohamed enan
mohamed enan le 18 Déc 2016
Modifié(e) : John Kelly le 10 Nov 2017
with a loop or symsum anything that makes this work
John BG
John BG le 19 Déc 2016
Mohamed are you calculating DTFT coefficients?
the[-3:1:3] window is shifting isn't it?
can you supply the whole chain of ak coefficients?
John BG
John BG le 19 Déc 2016
Dear Mr D'Errico
YES
in MATLAB the index to matrices cannot be 0 or negative, .
BUT .
NO,
you can build an index vector to make the k shift along any desired values, so ONE can use negative indices, not directly, but just check what the Image Analyst wrote below.

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 18 Déc 2016

0 votes

Perhaps this:
j = sqrt(-1)
a = rand(1,7); % Whatever...
omega = 2 % Whatever....
t = 42; % Whatever t value you want to evaluate x at.
k = -3 : 3;
x = sum(a .* exp(j .* k .* omega * t))

2 commentaires

Jan
Jan le 18 Déc 2016
I think 1j is nicer than redefining j=sqrt(-1).
Image Analyst
Image Analyst le 19 Déc 2016
You're right. That's a nice shortcut (if one remembers it).

Connectez-vous pour commenter.

Catégories

En savoir plus sur Mathematics dans Centre d'aide et File Exchange

Tags

Modifié(e) :

le 10 Nov 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by