![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/711702/image.jpeg)
Shade area between two curves
61 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I'm trying to fill the area between these two curves:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/711687/image.jpeg)
I have tried to use the jbfill.m function and to create a poligon for filling it without succes:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/711692/image.png)
Any idea on how to fix the problem?
Thank you in advance for your help! (ps: I attach the .mat files of x and upper and lower curves)
0 件のコメント
採用された回答
Simon Chan
2021 年 8 月 14 日
Use function fill
clear; clc;
load('xdata1.mat');
load('up.mat');
load('low.mat');
coord_up = [xdata1,up];
coord_low = [xdata1,low];
coord_combine = [coord_up;flipud(coord_low)];
fill(coord_combine(:,1),coord_combine(:,2),'b')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/711702/image.jpeg)
その他の回答 (2 件)
Image Analyst
2021 年 8 月 14 日
See the FAQ, not only for this very FAQQY question but for lots of other good information too:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Polygons についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!