필터 지우기
필터 지우기

Is it possible to map a block diagram transfer function system on MATLAB?

조회 수: 17 (최근 30일)
Joel Okanta
Joel Okanta 2021년 1월 13일
답변: Raynier Suresh 2021년 1월 19일
I was given a task where I had to map this system:
on MATLAB and then solve this very same system on Matlab.
The thing is, I can solve it normally on paper but I do not know how to map this out on MATLAB THEN solve it from there. Believe me, I have tried searching for answers online but have found nothing so far.
Therefore it would be very helpful if I was shown how to map these kinds of systems out on MATLAB.
Thank you very much in advance.
  댓글 수: 1
Image Analyst
Image Analyst 2021년 1월 14일
Whatever that is, diagram or image or whatever, post it here so people don't have to navigate away from your post and they can see everything needed right here at one time.

댓글을 달려면 로그인하십시오.

답변 (1개)

Raynier Suresh
Raynier Suresh 2021년 1월 19일
One possible way is, you can define the block diagram as an equation and then solve it with the help of symbolic math toolbox.
For Example, to solve this block diagram in MATLAB the code below can be used.
syms R G H C
eqns = (R - H*C)*G == C
Ctmp = solve(eqns,C)
TF = simplify(Ctmp/R)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by