MATLAB: Fsolve finds the wrong answer

fsolve

i want to solve this simple system using fsolve, the solutions is not corrent, what am i doing wrong??
F1 = @(x) x(1)-x(2)-1
F2 = @(x) 5.*x(2)-1
sts = [1 1];
fsolve({F1,F2},sts)
ans =
1.5000 0.5000
many thanks

Best Answer

fsolve(@(x) [x(1)-x(2)-1; 5.*x(2)-1],sts)