X = logspace(-16, -1, 16); data=csvread('lab_4_cond.csv'); % reading csv file X = data(:,1); Y = data(:,2); figure; loglog(X, Y, '-o'); grid on; legend('Error(Cond)'); title("$\bf Error(Condition)$", 'Interpreter','latex'); xlabel('Condition') ylabel('Error')