Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - Français

Change language to:
English - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Manuel Scilab >> Optimisation et Simulation > karmarkar

karmarkar

karmarkar algorithm

Calling Sequence

[x1]=karmarkar(a,b,c,x0)

Arguments

a

matrix (n,p)

b

n - vector

c

p - vector

x0

initial vector

eps

threshold (default value : 1.d-5)

gamma

descent step 0<gamma<1 , default value : 1/4

x1

solution

crit

value of c'*x1

Description

Computes x which minimizes

Examples

n=10;p=20;
a=rand(n,p);
c=rand(p,1);
x0=abs(rand(p,1));
b=a*x0;
x1=karmarkar(a,b,c,x0);
<< fit_dat Optimisation et Simulation leastsq >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jan 26 16:24:14 CET 2011