フィルターのクリア

How to fill between curves

2 ビュー (過去 30 日間)
Jake Simmonds
Jake Simmonds 2019 年 2 月 1 日
コメント済み: madhan ravi 2019 年 2 月 1 日
Hello there, just trying to work out how to use matlab to fill the regions between curves i've looked online and can't find anything of use. What i would like
is a method which given a set of values from f(t), and g(t) , where t= start:step:stop fills in the space between f(t) and g(t).
Best Regards Jake

回答 (1 件)

Bjorn Gustavsson
Bjorn Gustavsson 2019 年 2 月 1 日
Try something like:
f_of_t = f(t);
g_of_t = g(t);
fill([t,flilr(t)],[f_of_t,fliplr(g_of_t)],'r')
HTH
  1 件のコメント
madhan ravi
madhan ravi 2019 年 2 月 1 日
fliplr(t)
% ^-—-—-— typo missed it

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by