diff options
author | shigek <shigek@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-20 04:13:30 +0000 |
---|---|---|
committer | shigek <shigek@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-20 04:13:30 +0000 |
commit | 611bb8f5a8771b618b8e81f08438fb770a8c2872 (patch) | |
tree | 016463f47efd2062770956cb79fb514e8337ca7a | |
parent | ebe96d582e3bf048637663d6c51524bd40c3d3eb (diff) |
Wrong descriptions,pointed out by Bret Jolly,in the documents changed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/bigdecimal/bigdecimal_en.html | 9 | ||||
-rw-r--r-- | ext/bigdecimal/bigdecimal_ja.html | 7 |
2 files changed, 8 insertions, 8 deletions
diff --git a/ext/bigdecimal/bigdecimal_en.html b/ext/bigdecimal/bigdecimal_en.html index 02c88df43e..c2b86faef6 100644 --- a/ext/bigdecimal/bigdecimal_en.html +++ b/ext/bigdecimal/bigdecimal_en.html @@ -379,7 +379,7 @@ after every n digits for readability. <CODE><PRE> BigDecimal("0.1234567890123456789").to_s(10) # ==> "0.1234567890 123456789E0" </PRE></CODE> -n can be an string representing a positive integer number. +n can be a string representing a positive integer number. <CODE><PRE> BigDecimal("0.1234567890123456789").to_s("10") # ==> "0.1234567890 123456789E0" </PRE></CODE> @@ -678,10 +678,9 @@ structure. </DL> <H3>Disadvantage of decimal representation</H3> -Advantages stated so far can also be disadvantages if the input from outside is - represented in binary. -Translation error from decimal to binary or vice versa is inevitable. -So,translation from Float(binary) to BigDecimal(decimal) is not alway done exactly. +Because most computers have no internal decimal representaion. +Once you use BigDecimal,you need to keep using it without +considering computation cost if exact computation is required. <H4>Which is the first input?</H4> Because most people uses decimal notatin for numeric data representation, diff --git a/ext/bigdecimal/bigdecimal_ja.html b/ext/bigdecimal/bigdecimal_ja.html index 8fd95a6fe3..37bbcbbb09 100644 --- a/ext/bigdecimal/bigdecimal_ja.html +++ b/ext/bigdecimal/bigdecimal_ja.html @@ -676,10 +676,11 @@ exponent=1�Asign=2 �Ȃ琔�l�� 1234.56784321 �ł���̂͌���Β����ɕ�����܂��B <H3>10�i�̃f�����b�g</H3> ���͍��܂ł̃����b�g�́A���̂܂܃f�����b�g�ɂ��Ȃ�܂��B -���������A10�i��2�i�A2�i��10�i�ɕϊ�����悤�ȑ���͕ϊ��덷 +���������A10�i��2�i�ɕϊ�����悤�ȑ���͕ϊ��덷 ���ꍇ��������邱�Ƃ͂ł��܂���B -���Ɍv�Z�@�����Ɏ�荞�܂ꂽ2�i���l�� BigDecimal �̓����\���� -�ϊ�����Ƃ��ɂ͌덷���������Ȃ��ꍇ������܂��B +��T�̃R���s���[�^��10�i�̓����\���������Ă��Ȃ��̂ŁA +BigDecimal �𗘗p���Č덷�����̌v�Z������ꍇ�́A�v�Z���x +�����Ă��Ō�܂� BigDecimal ���g�p������K�v������܂��B <H3>�ŏ��͉����H</H3> �����Ōv�Z����Ƃ��ɂ킴�킴2�i�����g���l�͋ɂ߂Ă܂�ł��B |