calculate the area and circumference of a circle with a radius of 4 cm. write set of commands used at command prompt in matlab. in matlab
main.m
% Define the radiusradius = 4;
% Calculate the area of the circlearea = pi * radius^2% Calculate the circumference of the circlecircumference = 2 * pi * radius