Initial guess for iterative solver

Hello everyone,
How can I use the initial value for x to solve the system of linear equations Ax = b?

set(A, solver=GMRES);
x[] = A^-1*b[];

Put your initial guess in x[].

Thank you very much.