how do you do a routh hurwitz table in matlab?
93 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
J Pade
el 29 de Dic. de 2019
Comentada: Emmanouil Tzorakoleftherakis
el 17 de Jun. de 2024
routh table for K(s+2)/s^3+1.5s^2+16s-8.5 in matlab
0 comentarios
Respuesta aceptada
Walter Roberson
el 29 de Dic. de 2019
2 comentarios
Matt Cooke
el 24 de Mayo de 2020
following this method it brings up an error stating 'Index in position 1 is invalid. Array indices must be positive integers or logical values.' how can this be solved?
Emmanouil Tzorakoleftherakis
el 17 de Jun. de 2024
Multiple other FX submissions you can choose from:
Más respuestas (1)
Mpho Mugodi
el 7 de Mayo de 2020
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 comentario
Walter Roberson
el 7 de Mayo de 2020
ncol = size(YourRouthTable, 2);
fmt = repmat({'%10.5f '}, 1, ncol);
fmt{end} = '%10.5f\n';
fmt = [fmt{:}];
fprintf(fmt, YourRouthTable.'); %transpose is important
Ver también
Categorías
Más información sobre Stability Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!