𝑀(𝑠) = 10/(𝑗𝑤 − 2), using figure function nyquist in matlab

You can use the figure function in MATLAB to plot the Nyquist plot of the transfer function M(s) = 10/(jw - 2). Here's how you can do it:

main.m
num = 10;
den = [1, -2]; % s = jw
M = tf(num, den);

figure;
nyquist(M);
73 chars
7 lines

This code snippet defines the transfer function M(s) = 10/(jw - 2) and then uses the nyquist function to plot its Nyquist plot. You can run this code in MATLAB to visualize the Nyquist plot of the given transfer function.

related categories

gistlibby LogSnag