get the reflection of function

4 ビュー (過去 30 日間)
Mohamed ahmed
Mohamed ahmed 2016 年 11 月 28 日
回答済み: KSSV 2016 年 11 月 29 日
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 Center および File ExchangeModeling についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by