Finish report

This commit is contained in:
2023-02-28 14:09:18 +01:00
parent 50dab7913d
commit 2413fc641e
212 changed files with 61262 additions and 16238 deletions

View File

@@ -0,0 +1,10 @@
% =computeSimultaneousDamping=
function [xi_min] = computeSimultaneousDamping(g, G, K)
[~, xi] = damp(minreal(feedback(G, g*K), [], false));
xi_min = 1/min(xi);
if xi_min < 0
xi_min = 1e8;
end
end