Borrar filtros
Borrar filtros

what is i in the answer?

3 visualizaciones (últimos 30 días)
Si So
Si So el 6 de En. de 2021
Comentada: Paul el 30 de Mayo de 2024
Hello,
I don't know what is i in the answer of my script. Complex number? how can I simplify it? I need to get rid of i.
syms x(t) s
Dx = diff(x(t),t);
laplace(sin(t)*Dx,t,s)
ans =
- (s*laplace(x(t), t, s - 1i)*1i)/2 + (s*laplace(x(t), t, s + 1i)*1i)/2 - laplace(x(t), t, s - 1i)/2 - laplace(x(t), t, s + 1i)/2
Thank you for helping me
  8 comentarios
VBBV
VBBV el 30 de Mayo de 2024
@Si So you could simplify the equation and then use lapplace term by term
syms x(t) s
Dx = diff(x(t),t);
L = laplace(laplace(sin(t),t,s)*Dx,t,s)
L = 
Paul
Paul el 30 de Mayo de 2024
What is the mathematical justifcation for this solution?
syms x(t) s
Dx = diff(x(t),t);
Consider the inner term
(laplace(sin(t),t,s)*Dx)
ans = 
What does it mean to mutiply of function of t with a function of s (in the context of this problem)?
Is there a reference for a property of the Laplace transform that says ( * means multiplication)?
L(f(t)*g(t)) = L(f(t))*g(t)
%L = laplace(laplace(sin(t),t,s)*Dx,t,s)

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by