Add value to previous value while using a for loop

조회 수: 25 (최근 30일)
Vance Blake
Vance Blake 2020년 8월 29일
댓글: stozaki 2020년 8월 29일
Hi I am trying to compute the summation of a series of two values and then dvide them using a for loop and calling a function. The values of i can range from 1 to N and I want to sum them according to this relationship COM(from 1 to N) = [m(1)*x(1)]/m(1)+[m(2)*x(2)]/m(2)+...+[m(N)+x(N)]/m(N) I have posted what I have so far but cant crack how to add the previously calculated value to the new one. Any help would be greatly appreciated!
% Part A
N = 1:1:100;
SizeofN = size(N,2);
for i = 1:SizeofN
m(i) = i^(1.1);
x(i) = i^(2);
CoM_num(i) = m(i)*x(i);
CoM_denom(i) = m(i);
end
for j = 1:SizeofN
CoM_tot(j) = CoM_num(j)/CoM_denom(j);
end

답변 (1개)

stozaki
stozaki 2020년 8월 29일
Hello Vance,
Try adding the following to your script. COMTOT is the cumulative sum.
COMTOTALL = cumsum(CoM_tot);
COMTOT = COMTOTALL(end);
function : cumsum
Regards,
stozaki
  댓글 수: 2
Vance Blake
Vance Blake 2020년 8월 29일
편집: Vance Blake 2020년 8월 29일
Hi stozaki, so I would like to calculate the cumulative total of the columns in the row vector specified by the current iteration number. So If im on iteration 3 it would sum the first 3 columns in CoM_tot. I have upgraded my code from when I posted but I can't seem to get the fucntion and function call right to perform that operation. Here is what I have and this is the error i get
Output argument "CoM_totM" (and maybe others) not assigned during call to
M = 10:1:100;
LengthofM = length(M);
for n = M:LengthofM
[CoM_totM] = CenterMassCalc(M(n));
end
function [CoM_totM] = CenterMassCalc(M)
SizeofM = size(M,2);
for k = 10:SizeofM
m(k) = k^(1.1);
x(k) = k^(2);
CoM_num(k) = m(k)*x(k);
CoM_denom(k) = m(k);
CoM_totM(k) = sum(CoM_num(1:k))/sum(CoM_denom(1:k));
end
end
stozaki
stozaki 2020년 8월 29일
Hi Vance,
The cause of the error is that CoM_totM has not been initialized, so an error occurs if the result of the CenterMassCalc function is undefined.
M = 10:1:100;
LengthofM = length(M);
for n = M:LengthofM
[CoM_totM] = CenterMassCalc(M(n));
end
function [CoM_totM] = CenterMassCalc(M)
% initialize
CoM_totM = [];
SizeofM = size(M,2);
for k = 10:SizeofM
m(k) = k^(1.1);
x(k) = k^(2);
CoM_num(k) = m(k)*x(k);
CoM_denom(k) = m(k);
CoM_totM(k) = sum(CoM_num(1:k))/sum(CoM_denom(1:k));
end
end
Even if you initialize CoM_totM, the result will be empty.
Is the processing you want to perform appropriate?
stozaki

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

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by