Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

exchange problems to 0.xyz (after the dot)

1 visualización (últimos 30 días)
yonatan friedman
yonatan friedman el 21 de Dic. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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)
--------------------------------

Respuestas (1)

Walter Roberson
Walter Roberson el 21 de Dic. de 2019
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