Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

where the problem .... I want to display the transfer function as a function a ......

1 Ansicht (letzte 30 Tage)
belal hariz belgacem
belal hariz belgacem am 31 Okt. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
clear all, close all, clc;
syms a
%% State space representation
A = [a 1;-10 -7]
% the state matrix
B = [0;1]
% the input vector
C = [1 0;0 1]
% the output vector
D = zeros(size(C,2),size(B,2))
[num,den]=ss2tf(A,B,C,D)

Antworten (1)

Walter Roberson
Walter Roberson am 31 Okt. 2019
Absolutely nothing in the Control Systems toolbox can handle symbolic variables.
The closest you can get is to construct systems with "tunable" values. Tunable values always have a specific current value; they mostly exist to make it easier to change numeric parameters in state space systems.

Diese Frage ist geschlossen.

Communitys

Weitere Antworten in  Power Electronics Control

Community Treasure Hunt

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

Start Hunting!

Translated by