From 79583a44468943fad22ba1de2dd25dd86f7be167 Mon Sep 17 00:00:00 2001 From: Harpreet Date: Tue, 22 Dec 2015 14:51:05 +0530 Subject: Bugs by prof fixed 2 --- help/en_US/scilab_en_US_help/lsqnonneg.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'help/en_US/scilab_en_US_help/lsqnonneg.html') diff --git a/help/en_US/scilab_en_US_help/lsqnonneg.html b/help/en_US/scilab_en_US_help/lsqnonneg.html index 4f2f661..40139a0 100644 --- a/help/en_US/scilab_en_US_help/lsqnonneg.html +++ b/help/en_US/scilab_en_US_help/lsqnonneg.html @@ -37,8 +37,8 @@

Calling Sequence

-
x = lsqnonneg(C,d)
-x = lsqnonneg(C,d,param)
+   
xopt = lsqnonneg(C,d)
+xopt = lsqnonneg(C,d,param)
 [xopt,resnorm,residual,exitflag,output,lambda] = lsqnonneg( ... )

Parameters

@@ -55,18 +55,18 @@
exitflag :

Integer identifying the reason the algorithm terminated.

output : -

Structure containing information about the optimization.

+

Structure containing information about the optimization. Right now it contains number of iteration.

lambda : -

Structure containing the Lagrange multipliers at the solution x (separated by constraint type).

+

Structure containing the Lagrange multipliers at the solution x (separated by constraint type).It contains lower, upper and linear equality, inequality constraints.

Description

Solves nonnegative least-squares curve fitting problems specified by :

-

We are calling IPOpt for solving the nonnegative least-squares curve fitting problems, IPOpt is a library written in C++. The code has been written by ​Andreas Wächter and ​Carl Laird.

+

We are calling IPOpt for solving the nonnegative least-squares curve fitting problems, IPOpt is a library written in C++.

Examples

-
A basic lsqnonneg problem
+   
// A basic lsqnonneg problem
 C = [
 0.0372    0.2869
 0.6861    0.7071
-- 
cgit