Skip to content
New issue

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

Small bug in op_averaging.m, when input data only has 1 average (out not returned)? #104

Open
rmekle opened this issue Dec 19, 2022 · 0 comments

Comments

@rmekle
Copy link

rmekle commented Dec 19, 2022

Hi,

I obtained an error message, when applying the routine op_averaging to a water signal with only 1 average.
"Output argument "out" (and maybe others) not assigned during call to "op_averaging".

The corresponding code in op_averaging.m reads:

function out=op_averaging(in);

if in.flags.averaged || in.averages<2
%DO NOTHING
disp('WARNING: No averages found. Returning input without modification!');
return;
end

if in.dims.averages==0
%DO NOTHING
disp('WARNING: No averages found. Returning input without modification!');
out=in;
return;
else
...

I guess in the first if-statement that checks if # of averages is below 2, the line
out=in;
is missing, which in my case leads to the error message mentioned above.

Adding the line
out=in;
fixed this error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant