the kinetic energy of a moving car object is KE12mv2 create
the kinetic energy of a moving car object is KE=1/2mv^2. create and test a function called KE to find the kinetic energy of a moving car if you know the mass m and the velocity v of the vehicle.
m=1000 kg
v=25 m/s
develop a MATLAB solution
Solution
function [ KE ] = KineticEnergy(m,v )
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
KE = 1/2 * m * v^2
end
KineticEnergy(1000,25)
