How do you declare a symbolic function of time as a real variable
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
I have several symbolic functions of time which I would like to declare as real. How can I do this?
syms x1(t) x2(t) x3(t) real
does not work because later when I say X = [x1 ; x2 ; x3], the expressions for X involve conjugates.
Thank you,
Kevin
Respuestas (2)
Walter Roberson
el 10 de Jun. de 2013
You could try adding an assumption that imag(x1(t)) == 0
1 comentario
Walter Roberson
el 19 de Abr. de 2017
You can
assumeAlso(diff(x1(t),t),'real')
assumeAlso(diff(x2(t),t),'real')
Ver también
Categorías
Más información sobre Assumptions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!