Skip to content

Commit

Permalink
Merge pull request #75 from nidtec-una/74-prepare-for-third-release
Browse files Browse the repository at this point in the history
KrySBAS v0.3.0
  • Loading branch information
jhabriel authored Sep 11, 2024
2 parents f9bb45e + fdc8022 commit b5ed28c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/gmres_e.m → src/solvers/gmres_e.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
gmres_e(A, b, m, d, tol, maxit, xInitial, eigstol, varargin)
% GMRES-E algorithm
%
% Description:
% ------------
%
% GMRES-E is a modified implementation of the restarted
% Generalized Minimal Residual Error or GMRES(m) [1], performed by
% appending 'd' eigenvectors corresponding to a few of the smallest
Expand Down
3 changes: 3 additions & 0 deletions src/lgmres.m → src/solvers/lgmres.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
lgmres(A, b, m, l, tol, maxit, xInitial, varargin)
% LGMRES algorithm
%
% Description:
% ------------
%
% LGMRES ("Loose GMRES") is a modified implementation of the restarted
% Generalized Minimal Residual Error or GMRES(m) [1], performed by
% appending 'l' error approximation vectors to the restarting Krylov
Expand Down
3 changes: 3 additions & 0 deletions src/pd_gmres.m → src/solvers/pd_gmres.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
varargin)
% PD-GMRES Proportional-Derivative GMRES(m)
%
% Description:
% ------------
%
% pd_gmres is a modified implementation of the restarted Generalized
% Minimal Residual Error or GMRES(m) [1], performed by using a
% proportional-derivative control-inspired law to update adaptively the
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
function dy = harmonic_ritz_vectors(F, G, k, V, tol)
% Harmonic Ritz Vectors function
%
% Description:
% ------------
%
% This function is a modified implementation of the Rayleigh-Ritz method
% that finds good approximations to the smallest eigenvalues and its
% associated eigenvectors, and appends these ones to the next search
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/pd_rule.m → src/utils/pd_rule.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
res, iter, alphaP, alphaD)
% Rule for the Proportional-Derivative law. Algorithm 1 of [1].
%
% % Signature:
% Signature:
% ----------
%
% miter = (m, n, mInitial, mMin, mMax, mStep, ...
Expand Down
File renamed without changes.

0 comments on commit b5ed28c

Please sign in to comment.