We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pd_gmres
Things got out of hand...
We got to a point where we have too many input arguments and too many output arguments.
After #28 is tackled, we will have to re-refactor the signature of the function using structures. We can have a call of the type
[x, extraOutputArgs] = pd_gmres(A, b, extraInputArgs, varargin);
where extraOutputArgs and extraInputArgs are respectively the extra output and input arguments.
extraOutputArgs
extraInputArgs
The text was updated successfully, but these errors were encountered:
Another alternative could be:
[x, flag, relresvec, mvec, time] = pd_gmres(A, b, mInitial, extraInputs, varargin);
Sorry, something went wrong.
jhabriel
No branches or pull requests
Things got out of hand...
We got to a point where we have too many input arguments and too many output arguments.
After #28 is tackled, we will have to re-refactor the signature of the function using structures. We can have a call of the type
where
extraOutputArgs
andextraInputArgs
are respectively the extra output and input arguments.The text was updated successfully, but these errors were encountered: