[plotting] gradient plot added

This commit is contained in:
mzwiessele 2015-10-05 18:47:54 +01:00
parent 5869ece323
commit 2b02082015
12 changed files with 193 additions and 125 deletions

View file

@ -167,7 +167,8 @@ def test_gplvm_plot(self=None):
plt.close('all')
m.plot_latent()
m.plot_magnification(labels=labels)
for do_test in _image_comparison(baseline_images=['gplvm_{}'.format(sub) for sub in ["latent", "magnification"]], extensions=extensions):
m.plot_steepest_gradient_map(resolution=5)
for do_test in _image_comparison(baseline_images=['gplvm_{}'.format(sub) for sub in ["latent", "magnification", 'gradient']], extensions=extensions):
yield (do_test, )
if __name__ == '__main__':