Fractional order system state space
Afficher commentaires plus anciens
Does anyone know how to apply a fractional order system state space representation in MATLAB?
3 commentaires
Khaled Bin Gaufan
le 4 Nov 2019
u can use this command foss(A,B,C,D,alpha)
%simple example
A=[1 2; 3 4];
B=[1;0];
C=[0 1];
D=0;
alpha=0.5 % fractional order
Sys=foss(A,B,C,D,alpha)
Walter Roberson
le 4 Nov 2019
That appears to be part of the File Exchange contribution "FOTF Toolbox"
Walter Roberson
le 20 Déc 2021
or FOMCON Toolbox perhaps, https://www.mathworks.com/matlabcentral/fileexchange/66323-fomcon-toolbox-for-matlab
Réponses (2)
Roshni Garnayak
le 13 Sep 2019
0 votes
Presently MATLAB doesn’t support the representation of fractional order state space models.
Muhammad Zeeshan Khan
le 20 Déc 2021
A=[1 2; 3 4];
B=[1;0];
C=[0 1];
D=0;
alpha=0.5 % fractional order
Sys=foss(A,B,C,D,alpha)
1 commentaire
Walter Roberson
le 20 Déc 2021
This appears to refer to the File Exchange contribution https://www.mathworks.com/matlabcentral/fileexchange/66323-fomcon-toolbox-for-matlab
Catégories
En savoir plus sur Dynamic System Models 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!