From cedbb008af704f6c49506e1d4067a2160e643ea4 Mon Sep 17 00:00:00 2001 From: Karthik Chandrashekara Date: Thu, 19 Aug 2021 12:37:08 +0200 Subject: [PATCH] Added line to plot contours. --- +Plotter/plotResultForTwoParameterScan.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/+Plotter/plotResultForTwoParameterScan.m b/+Plotter/plotResultForTwoParameterScan.m index 71ff77d..36141c0 100644 --- a/+Plotter/plotResultForTwoParameterScan.m +++ b/+Plotter/plotResultForTwoParameterScan.m @@ -47,6 +47,10 @@ function plotResultForTwoParameterScan(XParameter, YParameter, ZQuantity, vararg imagesc(RescaledXParameter, RescaledYParameter, RescaledZQuantity(:,:)'); +% hold on +% +% contour(RescaledXParameter, RescaledYParameter, RescaledZQuantity(:,:)', 'Color', 'r', 'Linewidth', 4, 'ShowText','on') + set(gca,'YDir','normal'); caxis([min(min(min(RescaledZQuantity))) max(max(max(RescaledZQuantity)))]);