graph1.m 269 B

1234567891011
  1. X = logspace(-16, -1, 16);
  2. data=csvread('lab_3_error.csv'); % reading csv file
  3. X = data(:,1);
  4. Y = data(:,2);
  5. figure;
  6. loglog(X, Y, '-o');
  7. grid on;
  8. legend('Tol(Cond)');
  9. title("$\bf Tolerance(Condition)$", 'Interpreter','latex');
  10. xlabel('Condition')
  11. ylabel('Tolerance')