필터 지우기
필터 지우기

How can i have a integer value?

조회 수: 1 (최근 30일)
Le Dung
Le Dung 2017년 9월 11일
편집: Le Dung 2017년 9월 11일
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.

답변 (1개)

KL
KL 2017년 9월 11일
편집: KL 2017년 9월 11일
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
Le Dung
Le Dung 2017년 9월 11일
편집: Le Dung 2017년 9월 11일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Install Products에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by