create a loop that can calculate the number of rotation per minutes of an extruder knowing the velocity and the volume that can contain in matlab
main.m
% Given velocity and volume of the extrudervelocity = 10; % velocity in m/svolume = 2; % volume in cubic meters% Calculating rotations per minuteradius = 1; % Assuming radius of the extruder in metersvolumetric_flow_rate = velocity * volume; % Calculating volumetric flow rate in cubic meters per secondrpm = (volumetric_flow_rate / (pi * radius^2)) * 60; % Calculating rotations per minute% Display the resultdisp(['Number of rotations per minute: ', num2str(rpm)]);