use matlab to find the polar plot of the following function. π(π ) = 10 /(ππ€ β 2) in matlab
main.m
% Define the function M(s)M_s = @(w) 10 ./ (1i*w - 2);
% Define the range of w valuesw = linspace(0, 10, 100); % adjust the range as needed% Calculate the magnitude and phase of M(s) for each w valuemagnitude = abs(M_s(w));
phase = angle(M_s(w));
% Create a polar plotpolarplot(phase, magnitude)
title('Polar Plot of M(s) = 10 / (jw - 2)')