summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/plot_convolutional_barycenter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/plot_convolutional_barycenter.py b/examples/plot_convolutional_barycenter.py
index 7ccdbe3..e74db04 100644
--- a/examples/plot_convolutional_barycenter.py
+++ b/examples/plot_convolutional_barycenter.py
@@ -87,6 +87,6 @@ for i in range(nb_images):
pl.axis('off')
else:
# call to barycenter computation
- pl.imshow(ot.convolutional_barycenter2d(A, reg, weights), cmap=cm)
+ pl.imshow(ot.bregman.convolutional_barycenter2d(A, reg, weights), cmap=cm)
pl.axis('off')
pl.show()