I have the following matlab code which calucaltes the Hessian of a non linear function using the symbolic toolbox
clc;
syms x1 x2 x3;
f = 4*x1^4*x2^(5/3)*x3^(-5);
h(x1,x2,x3) = hessian(f)
h(1,1,1)
eig(h(1,1,1))
I am trying to find the Eigen values of the Hessian so that I can prove that it is not a positive semi definite matrix.
My issue is the way the output is formatted. I am getting all my calculations as fractions and not decimals? Can i change it anywhere to output decimals instead of fractions? Output http://pastebin.com/11HHnmRn