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일

1 개 추천

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개)

카테고리

도움말 센터File Exchange에서 Dynamic System Models에 대해 자세히 알아보기

질문:

2016년 11월 28일

답변:

2016년 11월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by