i plotted two graphs just one above the other using "hold all' ,can i shade the region between these two graph and remaining lower region..?
1 回表示 (過去 30 日間)
古いコメントを表示
i plotted age & depth ,two graph of varying depth but same age, the graph appers one above other with a space , i want to shade this space
0 件のコメント
回答 (1 件)
Dishant Arora
2014 年 3 月 6 日
use fill
X = rand(1,100);
Y = rand(1,100)+1;
fill([1:100 , fliplr(1:100)] , [X , fliplr(Y)] , 'r')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Discrete Data Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!