I do not know how to set this problem up.

1 回表示 (過去 30 日間)
shelby mcgowan
shelby mcgowan 2016 年 7 月 25 日
回答済み: Div Tiwari 2016 年 8 月 9 日
Use the meshgrid function to determine all the possible amount that could be in your account at the end for 10 years given the following investments ($1000, $2000, $3500, $1500, $500) and the interest rates (0.15, 0.20, 0.1)
  1 件のコメント
Walter Roberson
Walter Roberson 2016 年 7 月 25 日
How would you write the equation for one investment amount at one interest rate for 10 years?

サインインしてコメントする。

回答 (1 件)

Div Tiwari
Div Tiwari 2016 年 8 月 9 日
Looking at the syntax of the 'meshgrid' should provide a hint. Consider
[X,Y] = meshgrid(xgv,ygv)
You may use the principal amounts as one input vector, and for the other, you could provide a vector containing the factor by which an amount would grow in 10 years under each of the given rates. Compare the output matrices to determine the final step(s).
As an aside, the same output can be obtained directly with a single matrix multiplication as well.

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by