get the reflection of function

9 次查看(过去 30 天)
how can i get the reflection f(-t) of f(t) ?
  1 个评论
Image Analyst
Image Analyst 2016-11-28
Uh, pass in -t instead of t??? Maybe I'm not understanding what you want.

请先登录,再进行评论。

采纳的回答

KSSV
KSSV 2016-11-29
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)')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Dialog Boxes 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by