Error unrecognised function or Variable 'ss'
Mostra commenti meno recenti
Hello
I am trying to use the state space model in my MATLAB code, however my Matlab is not recognising it and giving me always the error. I am using R2020a Student Version on Mac Pc.
My Error:
Unrecognized function or variable 'ss'.
Error in ex_2 (line 16)
sys1 = ss(-1/(R*C), 1/(R*C), 1, 0);
My Code:
figure('Name', 'Exercise e)', 'NumberTitle', 'off');
%%Setting arguments and values
R = 1000;
C = 0.001;
L = 100;
%%Establishing matrixes for later use
matrix1 = [0, -1/(L*C); 1, -R/L];
matrix2 = [1, 0];
matrix3 = [0, 1/(L*C)];
%%Creating the functions of the graphs
sys1 = ss(-1/(R*C), 1/(R*C), 1, 0);
sys2 = ss(matrix1, matrix2, matrix3, 0);
%%Drawing the graphs on the same figure
subplot(2,1,1);
impulse(sys1, sys2);
subplot(2,1,2);
step(sys1, sys2);
5 Commenti
Walter Roberson
il 3 Mag 2020
need the Control System Toolbox to be licensed and installed
Syed Ghayyour Ahmed
il 3 Mag 2020
Syed Ghayyour Ahmed
il 3 Mag 2020
BAKARI Aymen
il 13 Giu 2020
i have the same problem !
could you please told me how can i install the control system toolbox
Walter Roberson
il 13 Giu 2020
Modificato: Walter Roberson
il 7 Ott 2020
and in particular my Answer there
Risposte (1)
Arkadiy Turevskiy
il 7 Ott 2020
2 voti
This question gets a lot of views, so summarizing the answer: this error is due to Control System Toolbox not being installed.
3 Commenti
Harsh Jaiswal
il 28 Feb 2021
Hi,
I actually have it installed and still get the error. I dont know what could be wrong.

Arkadiy Turevskiy
il 1 Mar 2021
Hi, sorry to hear you are having issues.
Can you please post the code that is creating the error. Please also type "ver" at the command line and post the resulting list of products.
>>ver
If you are uncomfortable sharing the code, please contact MathWorks technical support.
Arkadiy
Dániel
il 20 Feb 2024
restarting matlab worked for me
Categorie
Scopri di più su Introduction to Installation and Licensing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!