Curve cover (upper limit and lower limit)
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
i plot a curve in maTLAB.i would like to know is there anyway tu make a cover for curve(sat of data plotted in a x-y axis.this is my code :(c values will call from another script...from a truncated random number generator) -------------------------------------------------------------
nsamples=3000;
for i=1:nsamples
CS(i)=C(1,i);
phi(i)=((14.1477*CS(i)*CS(i))-(28.512*CS(i))+16.4557);
end
plot( CS,phi,'+')
0 件のコメント
回答 (1 件)
Walter Roberson
2011 年 10 月 26 日
If you need to follow the top or bottom edges more closely, you could do something like grid your data and find the highest and lowest occupied points per column.
参考
カテゴリ
Help Center および File Exchange で Hypothesis Tests についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!