Fractional order system state space

Does anyone know how to apply a fractional order system state space representation in MATLAB?

3 Commenti

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)
That appears to be part of the File Exchange contribution "FOTF Toolbox"

Accedi per commentare.

Risposte (2)

Roshni Garnayak
Roshni Garnayak il 13 Set 2019

0 voti

Presently MATLAB doesn’t support the representation of fractional order state space models.
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)

Categorie

Richiesto:

il 9 Set 2019

Commentato:

il 20 Dic 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by