I am trying to change specific values of a matrix with a new ones.
조회 수: 1 (최근 30일)
이전 댓글 표시
%This is the matrix I am working with
%please do not worry about changing mpc to f in my code because my original code has many matrix and here I am calling only 'bus' matrix
%code 1
f.bus()
format short
for y=1:10
y
compound=(1+0.1)^(y-1)
ND=f.bus(:,3:4)*compound
end
%this is the portion of result for the above code 1
% Now when I try to substitute those values in the matrix by the following code 2
%code 2, I am just modifying code 1
f.bus()
format short
for y=1:10
y
compound=(1+0.1)^(y-1)
ND=f.bus(:,3:4)*compound
f.bus(:,3:4)= ND
f.bus()
end
%see what happen to y =10 for example
%And see what happen to the matrix, this is also a portion of the matrix but you can see columns 3 and 4
% Any idea why that is happening
%we can see that my ND values has changed too.
%please note, my original matrix was not affacted by my code 1 and I did "clear all" and "clc" but I did not help at all
댓글 수: 2
채택된 답변
Walter Roberson
2021년 11월 29일
Choose one approach:
- take interest rate plus one, to the power of the number of periods, and multiply by the initial value to get the expanded value; Or
- initialize current value to initial value. At each period multiply the current value by interest rate plus one, and store that back as the new current value.
You were doing both, calculating interest to the periods and updating the current value each period.
Interest to the periods is easy to vectorize, but keeping a current value is easier to simulate interest and repayment mixed.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Code Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!