PL/SQL Optimum search

From: Pailloncy Jean-Gérard <admin(at)rilk(dot)com>
To: Postgres mailing list general <pgsql-general(at)postgresql(dot)org>
Subject: PL/SQL Optimum search
Date: 2006-10-06 16:16:27
Message-ID: BC49823D-893B-4C83-8127-D5002574120E@rilk.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

I would to know if there is some libraries with general algorithm for
Optimum search.

Exemple: I have some function
res := error_estimate(x real, y real, z real, t real)

I wrote a function that
set of res := iterate(nb_iteration, start_x real, step_x real, ....
that return a
res := ROW(best_x, best_y, best_z, best_t, best_res)

But each time I want to test a new function, I have to write a new
iterete one too.

I would like to know if someone as already writen something like
row(array{{dimension, value, step}}, best_value) := optimum_search
( function_name, array{{dimension, start, step}}, max_iteration,
min_delta)

Note: the function I try to find optimum is enough smooth to do a
gradient search.

I would appreciate any information.
JG Pailloncy

Browse pgsql-general by date

  From Date Subject
Next Message Joshua D. Drake 2006-10-06 16:17:26 Re: PostgreSQL Database Transfer between machines(again)
Previous Message Brian J. Erickson 2006-10-06 16:14:15 Re: PostgreSQL Database Transfer between machines(again)