how can i get the reflection f(-t) of f(t) ?

1 comentario

Image Analyst
Image Analyst el 28 de Nov. de 2016
Uh, pass in -t instead of t??? Maybe I'm not understanding what you want.

Iniciar sesión para comentar.

 Respuesta aceptada

KSSV
KSSV el 29 de Nov. de 2016
t = linspace(0,2*pi) ;
f = @(t) sin(t) ;
figure
hold on
% f(t)
y1 = plot(t,f(t),'r') ;
%f(-t)
y2 = plot(t,f(-t),'b') ;
legend('f(t)','f(-t)')

Más respuestas (0)

Categorías

Más información sobre Dynamic System Models en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 28 de Nov. de 2016

Respondida:

el 29 de Nov. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by