Effacer les filtres
Effacer les filtres

Calculating the gradient of a function

6 vues (au cours des 30 derniers jours)
amine&&
amine&& le 5 Jan 2017
Hello. I want to calculate the gradient of this function at the point xc:
function MSE=mseFunction(alpha,beta,y,yS)
MSE = [alpha beta; y yS];
end
xc = [100; 102];
y = 20;
yS = 50;
how I should proceed. Thanks!

Réponses (1)

Marco Morganti
Marco Morganti le 5 Jan 2017
Modifié(e) : Marco Morganti le 6 Jan 2017
Hi Amine,
you could use gradient() along with symbolic variables to find the gradient of your function MSE().
syms parameters;
f = mseFunction(parameters);
g = gradient(f);
at this point you can evaluate g() at the desired point:
g_xc = eval(subs(g,xc));
I hope this helps
  4 commentaires
amine&&
amine&& le 5 Jan 2017
Hi Walter, even typing :
f = @(x)mseFunction(x(1),x(2),y,yS)
g = gradient(f)
I get :
Undefined operator '.'' for input arguments of type 'function_handle'.
Error in gradient>parse_inputs (line 146)
f = f.';
Error in gradient (line 48)
[f,ndim,loc,rflag] = parse_inputs(f,varargin);
Walter Roberson
Walter Roberson le 5 Jan 2017
syms parameters;
f = mseFunction(parameters);
g = gradient(f);
gfun = matlabFunction(g); %rather than eval()
g_xc = gfun(xc);

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by