Fminsearch for matrices

5 views (last 30 days)
srinadh
srinadh on 21 Apr 2011
Hi, how can i use fminsearch function for more than one dimension.
I am trying to do some thing like f=@(X)min(A-B*X), where A and B are given matrices. When I try to do fminsearch(f,x) i get the following error
??? Error using ==> minus Matrix dimensions must agree
so is there a way? Thanks

Accepted Answer

Andrew Newell
Andrew Newell on 21 Apr 2011
It sounds like the problem is with the dimensions of B*X. Does your initial value x0 have the same dimensions as A and B?
  4 Comments
Andrew Newell
Andrew Newell on 21 Apr 2011
Ah, I see the problem. FMINSEARCH can only accept functions that have a scalar as output. Fortunately, the function with the norm in it seems to be what you want.
srinadh
srinadh on 21 Apr 2011
Oh, that's the issue. Thanks for the help :)

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!