how to get the gradient of fucntion from vectors to scalars by matlab?
1 次查看(过去 30 天)
显示 更早的评论
here is the question: f:R^600 -> R f(x)=(Ax-b)^2 where A is a 400*600 matrix and b is 400*1 and both of them are given. how can I get the gradieint(f) at some given x0 by matlab ?
m=400
n=600
A=randn(m,n)
b=randn(m,1)
syms x
f= 0.5*norm(A*x-b)^2
gradient(f,x)
however it does not work because it seems it regard x as scalar, not a vector.
0 个评论
回答(1 个)
Arun Mathamkode
2018-9-26
I assume you are referring to the gradient of L2 norm squared. You can directly apply the closed form expression of the gradient. The gradient of f at some given x0 will be A'*A*x0-A'*b.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!