Skip to content

Commit 45b8994

Browse files
committed
Add matlabwrapper decorator to bayesian inference implementation
1 parent fb7323f commit 45b8994

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pymodalib/algorithms/bayesian.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from pymodalib.utils.decorators import experimental
2121

2222

23-
@experimental
2423
def bayesian_inference(
2524
signal1: ndarray,
2625
signal2: ndarray,

pymodalib/implementations/matlab/bayesian.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818

1919
from numpy import ndarray
2020

21-
from pymodalib.utils.decorators import experimental
21+
from pymodalib.utils.decorators import experimental, matlabwrapper
2222
from pymodalib.utils.matlab import multi_matlab_to_numpy, matlab_to_numpy
2323

2424

25-
@experimental
25+
@matlabwrapper(module="full_bayesian")
2626
def bayesian_inference_impl(
2727
signal1: ndarray,
2828
signal2: ndarray,

0 commit comments

Comments
 (0)