Need help with your Discussion

Get a timely done, PLAGIARISM-FREE paper
from our highly-qualified writers!

glass
pen
clip
papers
heaphones

RU Phyton Performance of The Steepest Descent Method Questions

RU Phyton Performance of The Steepest Descent Method Questions

RU Phyton Performance of The Steepest Descent Method Questions

Description

Attachment preview

The Rosenbrock function  is defined as:

f (x) = 10(x2 ?x1^2)^2 + (1 ?x1)^2
 The minimizer of this function is the point x = [1, 1]^t. 

Test (in Python) the performance of the gradient descent algorithm
 for the Rosenbrookænbsp;function starting at the point [?1.2, 1]^t by finding the number
 of iterations till convergence to a gradient norm of 10^?5. 
 2. Assess the performance of the steepest descent method on the above problem by
 generating a semi_log plot of the error f (x^k) ?f (x^?) vs. iteration count. Comment
 on the convergence rate.  

Unformatted Attachment Preview

rosenbrock.m
function [f,Df]=rosen(x)
% the 2D Rosenbrock function and its gradient
[m,n]=size(x);
if (m ~= 2 | n ~= 1)
error(‘Bad data sent to 2D Rosenbrock function’)
end
z
= [x(1)^2 – x(2), x(1)-1]’;
f
= 100*z(1)^2 + z(2)^2;
Df
= [400*x(1)*z(1) + 2*z(2), -200*z(1)]’;
Surface Plot of the Rosenbrock function
[X,Y]=meshgrid(-2:0.1:2);
Z=100*(Y-X.^2).^2+(ones(size(X))-X).^2;
surf(X,Y,Z)
Contour Plot of the Rosenbrock function
[X,Y]=meshgrid(-2:0.1:2);
Z=100*(Y-X.^2).^2+(ones(size(X))-X).^2;
contour(X,Y,Z)
Minimize Rosenbrock by Steepest Descent
minRosenBySD.m
%In this script we apply steepest descent with the
%backtracking linesearch to minimize the 2-D
%Rosenbrock function starting at the point x=(-1.9,2).
%Termination parameters
eps
= 1.0e-4;
epsf
= 1.0e-6;
maxit
= 10000;
iter
= 0;
%Linesearch parameters for backtracking
gamma
= 0.5;
c
= 0.01;
%Initialization
xc
= [-1.9;2];
fnc
= ‘rosenbrock’;
[fc,Df] = feval(fnc,xc);
nDf
= norm(Df);
%Are we already at a solution, or should we continue.
if nDf epsf & ndiff > eps & iter < maxit,
d
= -Df/nDf;
DDfnc
= Df’*d;
[xn,fn,fcall]=backtrack(xc,d,fc,fnc,DDfnc,c,gamma,eps);
ndiff
= norm(xn-xc);
xc
= xn;
[fc,Df] = feval(fnc,xc);
nDf
= norm(Df);
iter
= iter + 1;
data
= [data;[iter,nDf,ndiff,fcall,fc]];
%Report reason for termination.
if nDf
Purchase answer to see full
attachment
Explanation & Answer:

2 Questions

User generated content is uploaded by users for the purposes of learning and should be used following our honor code & terms of service.

Have a similar assignment? "Place an order for your assignment and have exceptional work written by our team of experts, guaranteeing you A results."

Order Solution Now

Our Service Charter


1. Professional & Expert Writers: Eminence Papers only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed of papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Eminence Papers are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Eminence Papers are known for the timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit in all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Eminence Papers, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.

We Can Write It for You! Enjoy 20% OFF on This Order. Use Code SAVE20

Stuck with your Assignment?

Enjoy 20% OFF Today
Use code SAVE20