feat: Add partial second lab
This commit is contained in:
11
generatePlots.m
Normal file
11
generatePlots.m
Normal file
@@ -0,0 +1,11 @@
|
||||
function generatePlots(H)
|
||||
subplot(1,2,1)
|
||||
plotoptions = bodeoptions;
|
||||
plotoptions.Grid = 'on';
|
||||
%plotoptions.FreqScale = 'linear';
|
||||
bodeplot(H,plotoptions)
|
||||
subplot(1,2,2)
|
||||
[num, den] = tfdata(H, "v");
|
||||
nyquist(num,den)
|
||||
grid on
|
||||
end
|
||||
Reference in New Issue
Block a user