How to calculate compound interest?
    조회 수: 11 (최근 30일)
  
       이전 댓글 표시
    
We borrowed $1000 money with an annual interest 10%. If we do not pay any penalty in 2 years then how much we owe the money? Answer must be assign in a variable called debt .
답변 (1개)
  SAA
      
 2020년 7월 30일
        It sounds like this is a copy paste of an assignment but ok
P =  1000; % principle 
r=0.1; n=2;
debt = P*(1+r)^n
댓글 수: 1
참고 항목
카테고리
				Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
			
	제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



