do you mind asimulink solution to the problem?
How to take laplace transform of square(t) function
조회 수: 11 (최근 30일)
이전 댓글 표시
Problem: http://imgur.com/NjI0XEF Plot for Part A: http://imgur.com/KXoMZ92 Code so far: http://pastebin.com/EJXZJi3d
I am currently on part b. I believe the problem is asking me to generate the square wave, which I do through square(t) from 0 to 30. But when I take the laplace transform I get an error.
syms s j Y;
f=square(j);
F=laplace(f,j,s)
-----------------------------------
Input arguments must be 'double'.
I can generate the wave but then I can't use the laplace transform. I've tried generating the square wave by using sin(t)/abs(sin(t)) but I don't know how to use the output of that function either.
Using this video and this pdf I believe the laplace transform is (exp(-s*pi) - 1)/(s*(exp(-s*pi) + 1) but I cannot replicate this in matlab.
What is the best way to generate this wave and obtain its laplace transform, should I just try to do the steps the same as in the video and ignore the laplace function or am I missing something?
답변 (1개)
Philip Caplan
2015년 4월 15일
편집: Philip Caplan
2015년 4월 15일
Since this is a homework problem, I'll only give some hints. The reason you are getting the error message "Input arguments must be 'double'" is because "square" is not defined for symbolic inputs. However, from your homework question, note that "h(t) is defined on [0,10*pi]" which can be described by:
syms t
n = 10;
h = heaviside(t);
for i=1:n
h = h +2*((-1)^i)*heaviside(t -i*pi);
end
You can then call "laplace(h)" but note this is only a part of the full square wave, defined on [0,10*pi]. Hope this helps.
댓글 수: 1
laisha
2016년 9월 13일
If i want n equals to infinity, what changes should i make? The function gives an error
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!