フィルターのクリア

Hatchfill certain area under curve: findobj

17 ビュー (過去 30 日間)
peterhack
peterhack 2016 年 6 月 19 日
コメント済み: Walter Roberson 2016 年 6 月 19 日
Hi,
I was wondering how to get the area left to the line where the mean is hatched in color using hatchfill2 function:
x = [-3:.1:3];
norm = normpdf(x,0,1);
figure;
plot(x,norm)
y1 = get(gca,'ylim');
hold on
plot([mean(norm) mean(norm)],y1)
I am aware this tutorial, however, I already struggle getting the right area with findobj.
Thanks in advance!

採用された回答

Walter Roberson
Walter Roberson 2016 年 6 月 19 日
You plotted the mean as a line instead of as a patch. The hatchfill and hatchfill2 File Exchange contributions require patch objects.
nmean = mean(norm);
on_left_side = x <= nmean;
left_x = x(on_left_side);
left_y = norm(on_left_side);
patch_x = [left_x(:); left_x(end); left_x(1)];
patch_y = [left_y(:); left_y(1); left_y(1)];
h = patch(patch_x, patch_y, 'w');
hatchfill(h);
If you look carefully at the result before doing the hatch fill you will note that the patch created might end slightly to the left of the line. This has to do with the fact that your x is quantized by your colon operator so the mean can fall between two x values.
I considered posting code to do the interpolation so you got a good edge match, but I did not bother working it out, because your line is fundamentally meaningless. norm is your y coordinate and you are taking the mean over that y coordinate, and you are then turning that mean y coordinate into an x coordinate. It would make a lot more sense if you were drawing a horizontal line and hatching above or below it.

その他の回答 (1 件)

peterhack
peterhack 2016 年 6 月 19 日
Many thank for your reply!
I am aware of the values that they are meaningless. This was just an example to get going.
Anyway, one more question. I would like to color the hatch similiar to the turial, but I do get this: "There is no Color property on the Patch class." Do I need to use another object class?
  1 件のコメント
Walter Roberson
Walter Roberson 2016 年 6 月 19 日
patch objects have CData and FaceVertexCData properties. The two affect coloring in different ways, with the vertex based one being more powerful in some ways.
The output of hatchfill is line objects, which do have a Color property.

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

カテゴリ

Help Center および File ExchangeSurfaces, Volumes, and Polygons についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by