Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
where the problem .... I want to display the transfer function as a function a ......
조회 수: 1 (최근 30일)
이전 댓글 표시
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)
댓글 수: 0
답변 (1개)
Walter Roberson
2019년 10월 31일
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.
댓글 수: 0
이 질문은 마감되었습니다.
커뮤니티
더 많은 답변 보기: Power Electronics Community
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!