How to store values in summation for loop?

조회 수: 2 (최근 30일)
Kai Hii
Kai Hii 2022년 6월 9일
편집: Kai Hii 2022년 6월 10일
Hi, i dont know how to store values for each iteration? It keeps showing up as the same values for example iteration 1 =[50 50 50], iteration 2=[100 100 100]
  댓글 수: 2
KSSV
KSSV 2022년 6월 9일
Copy and paste your code here.....Image nippet will not help.
John D'Errico
John D'Errico 2022년 6월 9일
A picutre of your code does nothing, because we cannot use that code. Just paste in the code as text. Why do you want to make it more difficult to get help?

댓글을 달려면 로그인하십시오.

답변 (2개)

Sajid Afaque
Sajid Afaque 2022년 6월 9일
편집: Sajid Afaque 2022년 6월 9일
you need to create an array to store your results,
currently with this approach you are over-writing your results in variable s after each iteration
and also here s is an array of zeros and you are adding scalar to entire array in each iteration,
so finally you will have results obtained in final iteration and all the values would be equal
k=1:5;
s=zeros(1,length(k));
store_values = []; %create a where where you need to store results
for i= length(k)
store_value{i}=s(i)+(((-1).^k(i)).*(k(i).^(k(i)+1)))/(2.^k(i)) %focus on left side of equate, modify the right side of the equation as you need
end
%try this should work

John D'Errico
John D'Errico 2022년 6월 9일
편집: John D'Errico 2022년 6월 9일
You understand how to index a variable, thus k(i). But when you write this:
s = s + (stuff)
It increments ALL elements of the vector s.
Is there a good reason why you did not try:
s(i) = s(i) + (stuff)
inside the loop?
For example, if I write this:
X = [2 3 5];
Y = X + 2
Y =
4 5 7
do you see that it adds 2 to every element of X? However, if I write this:
X(1) = X(1) + 2
X =
4 3 5
then it impacts only one element of X.
  댓글 수: 1
Kai Hii
Kai Hii 2022년 6월 10일
편집: Kai Hii 2022년 6월 10일
Yeah I tried doing it this way but it's not adding to itself.
For example, if i have a summation equation (2.^x), iteration 1 should be 2.0, iteration 2 should be (2.0+4.0) and iteration 3 should be (2.0+4.0+8.0) but what it's doing is that in the array, iteration 1 is 2.0, iteration 2 is 4.0 and iteration 3 is 8.0

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by