How can i create a table?
1 回表示 (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (1 件)
the cyclist
2020 年 6 月 19 日
5 件のコメント
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.
参考
カテゴリ
Help Center および File Exchange で Downloads についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!