how do you do a routh hurwitz table in matlab?
Afficher commentaires plus anciens
routh table for K(s+2)/s^3+1.5s^2+16s-8.5 in matlab
Réponse acceptée
Plus de réponses (1)
Mpho Mugodi
le 7 Mai 2020
0 votes
I am doing routh hurwitz table in matlab i want to adjust the result to 5 decimal values?
using fprintf('\n Routh-Hurwitz Table:\n')
1 commentaire
Walter Roberson
le 7 Mai 2020
ncol = size(YourRouthTable, 2);
fmt = repmat({'%10.5f '}, 1, ncol);
fmt{end} = '%10.5f\n';
fmt = [fmt{:}];
fprintf(fmt, YourRouthTable.'); %transpose is important
Catégories
En savoir plus sur Stability Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!