MATLAB: What does this mean

command windowfsolve

Hi everybody.
I just used fsolve to get the roots (x,y) of a system of equations. In the command window i got this:
Matlab window.jpg
What does it mean? What are the values of x and y?
Thanks in advance.

Best Answer

1.0e+04 means 1.0 x10 to the power +4
>> 1.0e+04
ans =
10000
>>
This number is multiply with lower both number in your example
Related Question