From: Alexjang on
Hi, I'm a newcomer to Matlab. Now I get some messy points with its coordinates(x,y,z) and property(V),there are all numeric vectors.In my text file it's formated in rows like 'x,y,z,v'.How can I use matlab to render the volume based on these points? I'll be very appreciated for any suggestion.
From: Rich Ellis on
To begin with, look at the documentation entitled "Importing Data" so you
can import your data.

See the documentation entitled "Volume Visualization Techniques" to select
the techniques you want to use and to see how you need to format your data.
This documentation contains a list of functions you can use to visualize
various aspects of your data.

You might also want to look at the documentation entitled "Interpolation"


"Alexjang" <alexto1978(a)gmail.com> wrote in message
news:511471853.253221.1266915738678.JavaMail.root(a)gallium.mathforum.org...
> Hi, I'm a newcomer to Matlab. Now I get some messy points with its
> coordinates(x,y,z) and property(V),there are all numeric vectors.In my
> text file it's formated in rows like 'x,y,z,v'.How can I use matlab to
> render the volume based on these points? I'll be very appreciated for any
> suggestion.
>


From: Alexjang on
Thank you very much for your reply,Rich. I'll start as you suggested.