I need the matlab code for this problem When one attempts to
I need the matlab code for this problem
When one attempts to stop a car, both the reaction time of the driver and the braking time must be considered. Create a proper plot the following data.Solution
Matlab Code
V = [20 30 40 50 60 70];
dr = [ 6 9 12 15 18 21];
db = [6 14 24 38 55 75];
d = dr + db;
plot(V,d)
title(\'Plot of Velocity vs braking distance\');
ylabel(\'Braking Distance\')
xlabel(\'Velocity\')
