Info

此问题已关闭。 请重新打开它进行编辑或回答。

exchange problems to 0.xyz (after the dot)

1 次查看(过去 30 天)
making change problem
I need to exchange my money to "little-money" in this form :
[0.5 , 0.25 , 0.1 , 0.05 , 0.01]
I have : 0.68
the out put is : [1 , 0 , 1 , 1 , 3] %(0.5x1 + 0.25x0 + 0.1x1 + 0.05x1 + 3x0.01 = 0.68)
----------------------------------------
other example :
the input is 0.99
the out put is : [1 , 1 , 2 , 0 , 4] %(0.5x1 + 0.25x1 + 0.1x2 + 0.05x0 + 0.01x4 = 0.99)
--------------------------------

回答(1 个)

Walter Roberson
Walter Roberson 2019-12-21
coinvals = [0.5 , 0.25 , 0.1 , 0.05 , 0.01];
numcoins = [1 , 0 , 1 , 1 , 3];
total_value = coinvals * numcoins(:);

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by