You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: d p. <mr....@gm...> - 2005-02-23 10:54:36
|
!DhbNumericalMethodsTestCase methodsFor: 'functionEvaluation' ! testSplineDifferentiation " self debug: #testSplineDifferentiation " | interval testInterval interpolator | interval := 0.0 to: 10.0 by: 0.1. testInterval := 1.0 to: 9.0 by: 0.05. interpolator := DhbSplineInterpolator new. interval do: [:x | interpolator add: x @ x sin]. testInterval do: [:x | self assert: (x cos - (interpolator valueDerivative: x)) abs < 1.0e-6]! ! !DhbSplineInterpolator methodsFor: 'information' ! valueDerivative: aNumber "needs a trivial refactoring with #value to remove identical code" | answer n1 n2 n step a b constantTerm aTerm bTerm | coefficients isNil ifTrue: [self computeSecondDerivatives]. n2 := pointCollection size. n1 := 1. [n2 - n1 > 1] whileTrue: [n := (n1 + n2) // 2. (self xPointAt: n) > aNumber ifTrue: [n2 := n] ifFalse: [n1 := n]]. step := (self xPointAt: n2) - (self xPointAt: n1). a := ((self xPointAt: n2) - aNumber) / step. b := (aNumber - (self xPointAt: n1)) / step. constantTerm := ((self yPointAt: n2) - (self yPointAt: n1)) / step. aTerm := (coefficients at: n1) * (1 - (3 * a squared)) * step / 6 . bTerm := (coefficients at: n2) * (1 - (3 * b squared)) * step / 6 . ^ constantTerm + aTerm - bTerm. ! ! |
From: Adriaan v. O. <av...@xs...> - 2005-02-21 15:00:55
|
Daniel, Sure. Either publish it at Cincom Open Repository (prefered) or send me the code. Thx. Adriaan. > Hi > > Weve added a method onto DhBSplineInterpolator to answer the > diferential of a function at a point. Do you want the test & code for > it? > > Regards > > Daniel > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Dhbnumerics-discussion mailing list > Dhb...@li... > https://lists.sourceforge.net/lists/listinfo/dhbnumerics-discussion > -- http://vdg38bis.xs4all.nl |
From: d p. <mr....@gm...> - 2005-02-21 13:47:28
|
Hi Weve added a method onto DhBSplineInterpolator to answer the diferential of a function at a point. Do you want the test & code for it? Regards Daniel |
From: <ben...@id...> - 2004-05-22 12:30:32
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: Alexey S. <le...@us...> - 2003-04-14 13:02:04
|
Hi. I've got just a quick question. Is it possible to solve system of equations with NewtonZeroFinder? To pass Vector as initial values and get the result vector for all unknown variables on exit. Or it is one-dimensional function? |