Azzera filtri
Azzera filtri

How can i have a integer value?

2 visualizzazioni (ultimi 30 giorni)
Le Dung
Le Dung il 11 Set 2017
Modificato: Le Dung il 11 Set 2017
Hi everyone. I have a problem such as: I have 2 rows that is
amount: 2010 12060 16080 2010 10050 1005
val: 0.025 0.015 0.025 0.025 0.020 0.015
and i need calculate a variable called "money":
money = amount * val
summoney = sum(moneys),
value of "summoney" is 899.475
And my problem that is: i want to value of "summoney" is equal to 900, exactly.
At here, you can change value of variables "val" while value of variables "amount" is fixed.
But, you can only chose 6 digits after dot (such as: 0.025001) or on other word, you can only round up 6 digits after dot to variable "val".
Thank you so much.

Risposte (1)

KL
KL il 11 Set 2017
Modificato: KL il 11 Set 2017
amount = [2010 12060 16080 2010 10050 1005];
val =[0.025 0.015 0.025 0.025 0.020 0.015];
money = amount .* val;
summoney = sum(money)
d1 = (900-summoney)/amount(1) %calculate the difference to be added to val(1)
val(1)=val(1)+d1
money = amount .* val; %calculate new money and sum
summoney = sum(money)
if you want to distribute the difference across all elements of val, you can do it similarly.
  1 Commento
Le Dung
Le Dung il 11 Set 2017
Modificato: Le Dung il 11 Set 2017
First of All, thank you KL. of cause, it is solution that i thought, but as I said above, value of "val" must be a number that round up 6 digits after dot. That is problem. When do as you commented, val(1) = 0.025261194029851, so if i take val(1) = 0.025261, so value of summoney is not equal to 900.

Accedi per commentare.

Categorie

Scopri di più su Elementary Math in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by