Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8555749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:11:44+00:00 2026-06-11T15:11:44+00:00

I would like to create a plot of the 3D surface that spans over

  • 0

I would like to create a plot of the 3D surface that spans over all points from an [X,Y,Z] point cloud. For example this is a scatter plot of my point cloud:

scatter3(X,Y,Z,5,C)

Scatter plot

As you can see each data point has an intensity value C.

I now carry out the triangulation

dt      = DelaunayTri(X,Y,Z); 
[tri Xb]= freeBoundary(dt); 

And I get the triangulated surface

figure 
trisurf(tri,Xb(:,1),Xb(:,2),Xb(:,3), 'FaceColor', 'cyan', 'faceAlpha', 0.8);

Surface

However, when I try to set the colour of the surface using

trisurf(tri,Xb(:,1),Xb(:,2),Xb(:,3),C,'EdgeAlpha',0,'FaceColor','interp')

I get the error message: “Warning: Color Data is not set for Interpolated shading”, which is due to the fact that the size of C does not match Xb or tri.

How can I make sure I get the correct interpolated surface colour?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:11:45+00:00Added an answer on June 11, 2026 at 3:11 pm

    You have changed the number of points in the plotted triangulation by calling freeBoundary: only the surface points are left, the inner points do not belong to the surface. Therefore, you have to extract C values that correspond to those points. You can use ‘intersect(…, ‘rows’)’ to map the surface points Xb onto the original point set XYZ. Based on this map you extract the needed values from C. The code below does this.

    clear all;
    
    XYZ = rand(100,3);
    X=XYZ(:,1);
    Y=XYZ(:,2);
    Z=XYZ(:,3);
    C=rand(size(X));
    
    scatter3(X, Y, Z, 5,C);
    
    dt = DelaunayTri(X, Y, Z);
    [tri Xb]=freeBoundary(dt);
    
    % map Xb onto XYZ
    [~,IA,IB]=intersect(XYZ, Xb, 'rows');
    
    % extract the needed colors using the IA map
    Cn      = C(IA);
    
    % permute the surface triangulation points using IB map
    Xbn     = Xb(IB,:);
    
    % map the point numbers used in triangle definitions
    % NOTE: for that you need inverse map
    iIB(IB) = 1:length(IB);
    trin    = iIB(tri);
    
    trisurf(trin,Xbn(:,1),Xbn(:,2),Xbn(:,3),Cn,'EdgeAlpha',0,'FaceColor','interp');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to write a function that creates a plot of a set
I would like to create this shape using just css. I am pretty sure
I would like to create a c++ type that mimic the build-in type exactly.
I would like to create a class that runs something (a runnable) at regular
I would like to create a legend for a venneuler venn diagram. This should
I would like to create pole/zero plot similar to pole/zero plot . It is
I would like to create 10 plots that have different data, but the same
I'm using MATLAB to plot some data. I would like to create the legend
I would like to create a density plot in a 2D parameter space. However,
I am using qplot to create a stacked bar plot and would like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.