Amazon.com: Applied Optimization with MATLAB Programming (9780471349587): P. Venkataraman: Books

Sell Back Your Copy
For a $1.47 Gift Card
Trade in
Have one to sell? Sell yours here
Applied Optimization with MATLAB Programming
 
 
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Applied Optimization with MATLAB Programming [Hardcover]

P. Venkataraman (Author)
3.2 out of 5 stars  See all reviews (6 customer reviews)


Available from these sellers.


Textbook Student FREE Two-Day Shipping for students on millions of items. Learn more

Formats

Amazon Price New from Used from
Hardcover $97.08  
Hardcover, December 12, 2001 --  
Paperback --  
Sell Back Your Copy for $1.47
Whether you buy it used on Amazon for $21.99 or somewhere else, you can sell it back through our Book Trade-In Program at the current price of $1.47.
Used Price$21.99
Trade-in Price$1.47
Price after
Trade-in
$20.52
There is a newer edition of this item:
Applied Optimization with MATLAB Programming Applied Optimization with MATLAB Programming 3.2 out of 5 stars (6)
$97.08
In Stock.

Book Description

December 12, 2001 0471349585 978-0471349587 1
A new approach to learning classical optimization methods-numerical techniques modeled and illustrated via MATLAB

This unique and timely volume combines a formal presentation of classical methods of design optimization with detailed instruction in the application of these methods using MATLAB. It introduces readers to the symbolic, numerical, and graphic features of MATLAB and integrates this powerful combination in the translation of many algorithms into applied optimization techniques with animation.

Applied Optimization with MATLAB Programming develops all necessary mathematical concepts, illustrates abstract mathematical ideas of optimization using MATLAB's rich graphics features, and introduces new programming skills incrementally as optimization concepts are presented. This valuable learning tool:
* Focuses on real-world optimization techniques
* Covers all areas of optimization, including linear, nonlinear, discrete, and global
* Includes creative examples from many disciplines
* Presents a number of practical, open-ended design problems
* Features an accompanying Web site with MATLAB code for all the numerical techniques and examples in the book


This one-of-a-kind resource enables senior-undergraduate and graduate students in engineering and other design disciplines to develop practical programming skills as they master the concepts of optimization. It is also an excellent self-teaching guide for design engineers in all fields of endeavor.


Editorial Reviews

From the Back Cover

A new approach to learning classical optimization methods–numerical techniques modeled and illustrated via MATLAB

This unique and timely volume combines a formal presentation of classical methods of design optimization with detailed instruction in the application of these methods using MATLAB. It introduces readers to the symbolic, numerical, and graphic features of MATLAB and integrates this powerful combination in the translation of many algorithms into applied optimization techniques with animation.

Applied Optimization with MATLAB® Programming develops all necessary mathematical concepts, illustrates abstract mathematical ideas of optimization using MATLAB’s rich graphics features, and introduces new programming skills incrementally as optimization concepts are presented. This valuable learning tool:

  • Focuses on real-world optimization techniques
  • Covers all areas of optimization, including linear, nonlinear, discrete, and global
  • Includes creative examples from many disciplines
  • Presents a number of practical, open-ended design problems
  • Features an accompanying Web site with MATLAB code for all the numerical techniques and examples in the book

This one-of-a-kind resource enables senior-undergraduate and graduate students in engineering and other design disciplines to develop practical programming skills as they master the concepts of optimization. It is also an excellent self-teaching guide for design engineers in all fields of endeavor.

About the Author

P. VENKATARAMAN is Associate Professor in the Mechanical Engineering Department of the Rochester Institute of Technology.

Product Details

  • Hardcover: 416 pages
  • Publisher: Wiley-Interscience; 1 edition (December 12, 2001)
  • Language: English
  • ISBN-10: 0471349585
  • ISBN-13: 978-0471349587
  • Product Dimensions: 9.4 x 6.1 x 1 inches
  • Shipping Weight: 1.5 pounds
  • Average Customer Review: 3.2 out of 5 stars  See all reviews (6 customer reviews)
  • Amazon Best Sellers Rank: #337,191 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

6 Reviews
5 star:
 (3)
4 star:    (0)
3 star:    (0)
2 star:
 (1)
1 star:
 (2)
 
 
 
 
 
Average Customer Review
3.2 out of 5 stars (6 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

12 of 17 people found the following review helpful:
5.0 out of 5 stars Great self teaching tool, January 3, 2002
By A Customer
This review is from: Applied Optimization with MATLAB Programming (Hardcover)
In this text the author chooses MATLAB as the tool in running computer-based optimization problems. This approach clearly covers all levels of optimization, and the book further supports this coverage through many helpful examples that balance theory with the application. The open-ended problems that are provided are a helpful mechanism for reinforcing the lessons of the text. The website that is a companion to the book, helped me access the reference links to the MATLAB software and the author's own personal site. This web site is a true lifeline to the book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 6 people found the following review helpful:
1.0 out of 5 stars Maybe for someone...., September 10, 2009
This textbook was required for my Optimization Methods class for a group of Systems Engineers with varrying specialities. This book is written with the assumption that everyone using it has a strong background in mechanics and materials. My classmates and I are majoring in Systems Engineering and all have varying foci (Mechanical, Electrical, Computer, and Telecommunication Engineering). Most of the people in my class have never even had a mechanics and materials class, and those that have do not consider themselves prepared enough to use this text book.


All in all, this book is highly impractical for my (and my classmate's) usage.


The good news: It was cheap on Amazon.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 3 people found the following review helpful:
2.0 out of 5 stars Short on details; Bad Matlab code, December 23, 2010
By 
Eric "shie0041" (Minneapolis, MN USA) - See all my reviews
This book skips on some key details. For example, the linesearch methods for unconstrained minimization problems is left to a couple poorly-documented Matlab functions. Some discussion of linesearch methods should be considered in the text.

Secondly, the Matlab code is terrible. Consider lines 48-52 of UpperBound_nVar.m:

48: for i = 1:ntrials;
49: j = 0; dela = j*das; a00 = a0 + dela;
50: dx0 = a00*s; x0 = x + dx0; f0 = feval(functname,x0);
51: j = j+1; dela = j*das; a01 = a0 + dela;
52: dx1 = a01*s; x1 = x + dx1; f1 = feval(functname,x1);

Each iteration through the loop, j is initialized to 0. So dela is 0 and a00 = a0. These variables are not used elsewhere. So lines 49-52 could be simply replaced by

x0 = x + a0*s;
x1 = x + (a0 + das)*s
f0 = feval(functname, x + x0);
f1 = feval(functname, x + x1);

This is considerably easier to read than the author's code (4 assignment operations compared to 12). The variables j, dela, a00, dx0, a01, and dx1 never need to be created. Creating these variables makes the algorithm, which is not documented in the text, nearly intractable to read without converting to decent code. My guess is the author translated some ancient Fortran code into Matlab without taking the time to clean it up.

So to summarize:
1. This book skimps on details pertaining to the algorithms it has code for.
2. The code is hard to follow because of the author's programming style.

This book might be useful if you're looking for canned algorithms, but I would first check the Matlab File Exchange. This book is not useful for learning the details of how to implement these algorithms.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews




Only search this product's reviews



Inside This Book (learn more)
First Sentence:
Optimization has become a necessary part of design activity in all major disciplines. Read the first page
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
artificial cost function, stepsize computation, initial design vector, current incumbent solution, boldface sans serif type, floor space constraint, component placement machines, golden section method, discrete design variables, equality constrained problem, penalty multipliers, row manipulations, two design variables, graphical optimization, initialize iteration counter, pivot row, active inequality constraints, upper bound calculation, continuous relaxation, discrete optimization problem, artificial function, random walk method, nonbasic variables, primal problem, continuous optimization problems
Key Phrases - Capitalized Phrases (CAPs): (learn more)
New York, Optimization Toolbox, Handle Graphics, Steepest Descent, Genetic Algorithm, Symbolic Math Toolbox, Exterior Penalty Function, Englewood Cliffs, Final Objective, Translate Example, Sequential Gradient Restoration Algorithm, Stop Stopping Criteria, Sequential Linear Programming, Academic Press, Augmented Lagrange Multiplier, Math Works Inc
New!
Books on Related Topics | Concordance | Text Stats
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Back Cover | Surprise Me!
Search Inside This Book:




What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 

Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums



So You'd Like to...


Create a guide


Look for Similar Items by Category


Look for Similar Items by Subject