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
In SEPIA v0.8.0, we tried to fix a bug in the WH_wTGV.m of FANSI toolbox which will be used when the following options are selected:
WH_wTGV.m
The bug occurs in line 122 of the original WH_wTGV.m:
Lap = E1+E1t+E2+E2t+E3+E3t;
where variables E1t, E2t and E3t are undefined before their usage.
To fix this we created a new function called WH_wTGV_4sepia.m and updated the line as
WH_wTGV_4sepia.m
Lap = E1+Et1+E2+Et1+E3+Et2; %Lap = E1+E1t+E2+E2t+E3+E3t;
Upon checking, we found that the amendment is incorrect and we updated the line as
Lap = E1+Et1+E2+Et2+E3+Et3; %Lap = E1+E1t+E2+E2t+E3+E3t;
in the current master branch (commit 25c994, 3 August 2020).
The difference between the two versions is shown here:
If you are using SEPIA release v0.8.0 and want to use the above FANSI algorithm setting, please update SEPIA to the current master branch.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In SEPIA v0.8.0, we tried to fix a bug in the
WH_wTGV.m
of FANSI toolbox which will be used when the following options are selected:The bug occurs in line 122 of the original
WH_wTGV.m
:where variables E1t, E2t and E3t are undefined before their usage.
To fix this we created a new function called
WH_wTGV_4sepia.m
and updated the line asUpon checking, we found that the amendment is incorrect and we updated the line as
in the current master branch (commit 25c994, 3 August 2020).
The difference between the two versions is shown here:
If you are using SEPIA release v0.8.0 and want to use the above FANSI algorithm setting, please update SEPIA to the current master branch.
The text was updated successfully, but these errors were encountered: