Please show me how to do this on matlab only nothing else in
Please show me how to do this on matlab only nothing else include the program and output answer everything is included that\'s needed for the script
 Lazy dog has a mass of 24.0 kg. The table below shows a set of forces acting on him. Angle Force (Newtons) (\"CCW from X) 324 26 151 158 273 176 26 288 135 187 25 247 105 357 26 80 15 EF 105 Matlab Command Summary Solution
force = [35 19 25 26 18 15 32 36 26 24 25 32 19 26 29 30];
 angle = [77 278 11 324 151 158 273 176 288 135 187 247 105 357 80 3];
 mass = 24.0;
 force_x = sum(force*cosd(angle));
 force_y = sum(force*sind(angle));
 force_mag = sqrt(force_x^2 + force_y^2);
 acceleration = force_mag/mass;
 disp([\'X component of the force: \', num2str(force_x)]);
 disp([\'Acceleration: \', num2str(acceleration)]);

