<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Function minimization subroutine in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880226#M9443</link>
    <description>&lt;P&gt;This one you wrote a bit better:-) but still not (entirely) clear what you do have and what don't.&lt;/P&gt;
&lt;P&gt;If you mean that you have a function and do not know the Jacobian matrix (required for least squares) then MKL comes with the djacobi function which obtains it for you using finite difference method.&lt;/P&gt;
&lt;P&gt;In general, all optimization algorithms provided within MKL belong to gradient methods, and it means that you need to calculate derrivative (gradient) in order to obtain the next step and finally solution.&lt;/P&gt;
&lt;P&gt;If you mean that you want MKL to minimize function using only its value(s) (don't need to know the function griadient, I guess that's what you had in mind) then the answer is no.&lt;/P&gt;
&lt;P&gt;There are non-gradient methods capable of providing solution in that situation, with the most popular being the genetic algorithms (class of evalutionary algorithms), but you need to try to find it elsewhere.&lt;/P&gt;
&lt;P&gt;A.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Mar 2010 00:25:19 GMT</pubDate>
    <dc:creator>ArturGuzik</dc:creator>
    <dc:date>2010-03-03T00:25:19Z</dc:date>
    <item>
      <title>Function minimization subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880222#M9439</link>
      <description>&lt;P&gt;I was wondering if mkl has a subroutine like the "dtrnlsp" but that works not with least squares, but with an external function, and find the minimum point of this function. I've searchd in the manual and couldn't find something like this.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;If someone knowns, or even used the dtrnlsp modifing the external function to do this could please tell me. Thanks&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2010 13:59:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880222#M9439</guid>
      <dc:creator>renepreto</dc:creator>
      <dc:date>2010-03-02T13:59:14Z</dc:date>
    </item>
    <item>
      <title>Function minimization subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880223#M9440</link>
      <description>&lt;P&gt;You can use that solver for your purpose. Actually you &lt;B&gt;have &lt;/B&gt;to provide an "external" function. There is a ready to run example somewhere in MKL\Examples\Solver. The least squares calculation is occuring inside the solver.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Best regards, tj&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2010 14:34:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880223#M9440</guid>
      <dc:creator>Thomas_B_3</dc:creator>
      <dc:date>2010-03-02T14:34:52Z</dc:date>
    </item>
    <item>
      <title>Function minimization subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880224#M9441</link>
      <description>&lt;P&gt;yes, \Examples\Solver directory contains 6 examples (C and Fortran API) ofnonlinear least square problem with andwithoutboundary constraints.. see, as an example :ex_nlsqp_bc_c.c and ex_nlsqp_bc_c_x.c&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2010 16:12:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880224#M9441</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-03-02T16:12:49Z</dc:date>
    </item>
    <item>
      <title>Function minimization subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880225#M9442</link>
      <description>&lt;P&gt;Sorry guys! i've wrote really bad so I will describe better now. Supose tha I want to find the minimum of an external function, provided by me. I wish something that just find the minimum point of a generic function. f(x) = x^2 for example. The nlsqp subroutines only find this with least squares calculations and I have to provide the y(x) of || F(x) - y(x) ||. For a generic function I don't have the y(x). Is there a subroutine in mkl that does this?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2010 17:25:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880225#M9442</guid>
      <dc:creator>renepreto</dc:creator>
      <dc:date>2010-03-02T17:25:29Z</dc:date>
    </item>
    <item>
      <title>Function minimization subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880226#M9443</link>
      <description>&lt;P&gt;This one you wrote a bit better:-) but still not (entirely) clear what you do have and what don't.&lt;/P&gt;
&lt;P&gt;If you mean that you have a function and do not know the Jacobian matrix (required for least squares) then MKL comes with the djacobi function which obtains it for you using finite difference method.&lt;/P&gt;
&lt;P&gt;In general, all optimization algorithms provided within MKL belong to gradient methods, and it means that you need to calculate derrivative (gradient) in order to obtain the next step and finally solution.&lt;/P&gt;
&lt;P&gt;If you mean that you want MKL to minimize function using only its value(s) (don't need to know the function griadient, I guess that's what you had in mind) then the answer is no.&lt;/P&gt;
&lt;P&gt;There are non-gradient methods capable of providing solution in that situation, with the most popular being the genetic algorithms (class of evalutionary algorithms), but you need to try to find it elsewhere.&lt;/P&gt;
&lt;P&gt;A.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2010 00:25:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880226#M9443</guid>
      <dc:creator>ArturGuzik</dc:creator>
      <dc:date>2010-03-03T00:25:19Z</dc:date>
    </item>
    <item>
      <title>Function minimization subroutine</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880227#M9444</link>
      <description>&lt;P&gt;Hi Renepreto,&lt;/P&gt;
&lt;P&gt;The MKL provides solvers for nonlinear linear square problems with and without boundary constraints, but doesnt provide solvers for functional minimization.&lt;/P&gt;
&lt;P&gt;BTW, in some cases its possible to reformulate the functional minimization problem as the nonlinear square problem, for example, your generic function could be reformulated. (y(x) == 0)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;--Nikita&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2010 05:48:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-minimization-subroutine/m-p/880227#M9444</guid>
      <dc:creator>Nikita_S_Intel</dc:creator>
      <dc:date>2010-03-03T05:48:31Z</dc:date>
    </item>
  </channel>
</rss>

