How can i create a table?

조회 수: 5 (최근 30일)
Jane Smith
Jane Smith 2020년 6월 19일
댓글: Jane Smith 2020년 6월 19일
I need to create a table from a function of inputs and outputs of vectors of loan repayments. What is the layout of the commands i need to use to create a table?

답변 (1개)

the cyclist
the cyclist 2020년 6월 19일
Did you try looking through the documentation for tables?
  댓글 수: 5
the cyclist
the cyclist 2020년 6월 19일
I tried to get as close to what your code was doing as I can:
function [T] = loan(P,i,n)
Month = (1:n)';
for m = Month
Monthly_Amount(m,1)=P*i/(1-(1+i)^-n);
Payment_Interest_Content(m,1)=i*P;
Capital_Repaid(m,1)=i*n;
Remaining_Balance(m,1)=P-i;
end
T = table(Month,Monthly_Amount,Payment_Interest_Content,Capital_Repaid,Remaining_Balance);
end
Note that I just created a table, not a UI table.
Jane Smith
Jane Smith 2020년 6월 19일
Had been working a 2 weeks on this, couldn't be any more grateful to you. Thanks alot.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by