Color a delaunay triangulation

14 ビュー (過去 30 日間)
Cristina Garozzo
Cristina Garozzo 2014 年 9 月 10 日
コメント済み: Fabio Freschi 2014 年 9 月 11 日
I have a delaunay triangulation like the one in attach
. I need to color inside every triangle with a color. I'd like to show the orientation of the triangles. Because I need to highlight the order. Like the second figure

採用された回答

Fabio Freschi
Fabio Freschi 2014 年 9 月 10 日
編集済み: Fabio Freschi 2014 年 9 月 10 日
Let's suppose that your triangulation is organized as follows
  • P: Nx2: node coordinates
  • T: Mx3: triangulation
  • F: Mx1: scalar field to be plotted, this case orientation
you can plot with the following command
>> figure;
>> patch('Faces',T,'Vertices',P,'FaceVertexCData',F,'FaceColor','flat');
Fabio
  2 件のコメント
Cristina Garozzo
Cristina Garozzo 2014 年 9 月 11 日
Hi fabio thank you for the suggestion. I'm trying to use your code like this
%P: Nx2: node coordinates %T: Mx3: triangulation %F: Mx1: scalar field to be plotted, this case orientation
P=[x y]; T=TRI; F=alpha;
figure; patch('Faces',T,'Vertices',P,'FaceVertexCData',F,'FaceColor','flat');* *
But I have this error
Error using patch FaceVertexCData must be an Mx1 vector (indexed colors) or Mx3 matrix (RGB colors)
Error in provacolore2 (line 29) patch('Faces',T,'Vertices',P,'FaceVertexCData',F,'FaceColor','flat');
could you help me?
Fabio Freschi
Fabio Freschi 2014 年 9 月 11 日
could you post the outputs of the following commands
>> size(x)
>> size(TRI)
>> size(alpha)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by