From 5ad65d382c0d4683deb414e9871ac19b24b1b671 Mon Sep 17 00:00:00 2001 From: Kuba Fietkiewicz Date: Thu, 19 May 2011 12:29:18 -0400 Subject: [PATCH] ext/bigdecimal/lib/bigdecimal/jacobian.rb adding documentation for isEqual --- ext/bigdecimal/lib/bigdecimal/jacobian.rb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/bigdecimal/lib/bigdecimal/jacobian.rb b/ext/bigdecimal/lib/bigdecimal/jacobian.rb index e4420df..3f47e43 100644 --- a/ext/bigdecimal/lib/bigdecimal/jacobian.rb +++ b/ext/bigdecimal/lib/bigdecimal/jacobian.rb @@ -23,7 +23,7 @@ module Jacobian module_function - #-- + # Determines the equality of two numbers by comparing to zero, or using the epsilon value def isEqual(a,b,zero=0.0,e=1.0e-8) aa = a.abs bb = b.abs @@ -37,7 +37,7 @@ module Jacobian end end end - #++ + # Computes the derivative of f[i] at x[i]. # fx is the value of f at x. -- 1.7.2.1