You are running the code without providing any input parameters.
You might be trying to run the code by pressing the green Run button.
Or you might possibly have coded something like
fsolve(system_equation, x0)
when you would instead have needed to code
fsolve(@system_equation, x0)