how to write summation
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
shiv gaur
le 21 Fév 2022
Commenté : Walter Roberson
le 24 Fév 2022
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/902150/image.png)
pl write in this summation
0 commentaires
Réponse acceptée
Walter Roberson
le 24 Fév 2022
offset = 1; % Indices are 1-based in Matlab
S = 0;
for p = 0:i
S = S + A(offset+p) * C(offset + i - p);
end
6 commentaires
Rik
le 24 Fév 2022
This is an honest question: why don't you format your code? I'm serious. Why do you only use one of these three buttons?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/906185/image.png)
And why do you insist on leaving out any interpunction from your text? Can't you see that makes it harder to read?
Walter Roberson
le 24 Fév 2022
You are already asking for the solution to that power series in several questions. Concentrate on them, instead of asking here in comments on a completely different question.
Plus de réponses (1)
Jan
le 23 Fév 2022
S = 0;
for p = 1:i+1 % Indices are 1-based in Matlab
S = S + A(p) + C(i - p);
end
7 commentaires
Rik
le 24 Fév 2022
Is your shift key broken? And the keys for the . , and ? symbols? That must be very difficult.
You didn't provide values for A, so apparently those don't matter. Why should Jan pick some numbers to show his code works? You could have done exactly like me: write the example below. Then you could actually show what your problem is. If you can't explain it in English, you should explain it in Matlab.
i=10;
A=rand(i+1,1);
C=rand(size(A));
S = 0;
for p = 1:i+1 % Indices are 1-based in Matlab
S = S + A(p) + C(i - p);
end
And now we can see that Jan made a small mistake: he corrected the indexing of A, but forgot to fix the indexing of C. Walter has now posted an answer that fixes this.
Also, sending me emails will not do anything. You should format your code as code. It isn't hard. Press ctrl-E before you paste any code or use the bar that appears when you write . Using interpunction will also help. If you post code that doesn't run when you click the small run icon, then the problem is not that I haven't seen your research, the problem is that you didn't include all variable definitions. I did not close your question because I was unable to answer your question, I closed it because you seem to be unwilling to use the tools provided to you. If I insisted on answering your questions in a Dutch dialect, you would not be able to understand me and my answer would be useless to you. If you insist on not formatting your posts and not using any interpunction you make your responses almost useless as well.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!