Effacer les filtres
Effacer les filtres

Plotting 4 column of data

7 vues (au cours des 30 derniers jours)
reza
reza le 25 Mar 2013
Hi everybody
I have obtained 4 column of data from an experiment. They are X, Y, Z as positions and d as density.
This density is the electron density around an atom.
I want to plot this data in such a way that d represents the color and wherever d is low, there is light color and wherever d is high, there is a dark color.
I imported the data to matlab and selected surf function but the 3d curve is very inaccurate and ugly :D
How can I plot such a curve? I am a beginner in matlab by the way.
Thanks :)
  1 commentaire
Walter Roberson
Walter Roberson le 25 Mar 2013
Are the X, Y, Z regularly spaced, or are they irregular? Is there only one Z per (X,Y) combination ?

Connectez-vous pour commenter.

Réponses (3)

Ilham Hardy
Ilham Hardy le 25 Mar 2013
Hi reza,
How do you define the very inaccurate and ugly graph? can you post the resulted graph? By the way dou you need curve or 3d-shaded surface? If you need the latter, surf is the correct choice.
See more documentation of the surf, by typing doc surf in you rcommand window..
See also..

reza
reza le 25 Mar 2013
I need clouds. The density of electrons are like clouds around atoms. My data should result in several clouds in the XYZ cordination. d is in fact the color of these clouds.
This is what I got and is not what I want.
X, Y and Z are irregularly spaced.
Thanks

Kelly Kearney
Kelly Kearney le 25 Mar 2013
Try scatter3. Assuming data is your n x 4 matrix:
scatter3(data(:,1), data(:,2), data(:,3), [], data(:,4), 'filled');
  17 commentaires
reza
reza le 25 Mar 2013
I reversed the colormap and it turns to orange instead of blue. That's it. Nothing more happened.
Right now the min and max of the axes are 0-20 0-40 and 0-60.
I have 268000 points with (XYZd)
When I zoom in, it is not solid line but it consists of very small dots which are very close to each other.
Walter Roberson
Walter Roberson le 26 Mar 2013
What is min() and max() of the d data?
Try using the rotate to move the image around. The solid-looking background: does it turn out to be organized into planes, more or less? If you pan to move the edges into or out of view, does a "wall" disappear?

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by