A 3D-list-plot problem
- To: mathgroup at smc.vnet.net
- Subject: [mg23112] A 3D-list-plot problem
- From: hans.steffani at e-technik.tu-chemnitz.de (Hans Friedrich Steffani)
- Date: Wed, 19 Apr 2000 02:30:45 -0400 (EDT)
- Organization: Chemnitz University of Technology
- Sender: owner-wri-mathgroup at wolfram.com
I have a matrix of tripples {x,y,z}. The x is the same for all
tripples in a row the y is the same for each tripples in column.
Some tripples a substitude bei Null as the represent unvalid results.
The may be deleted by
Delete[lumpi, Position[lumpi, Null]]
Now I want a nice 3D-picture.
Flatten[%, 1];
ScatterPlot3D[%, BoxRatios -> {1, 1, 0.8}];
is not very good as there arre only points.
Flatten[%, 1];
Show[Map[ScatterPlot3D[#, DisplayFunction -> Identity,
PlotJoined -> True] &, %%%], DisplayFunction -> $DisplayFunction,
BoxRatios -> {1, 1, .8}];
does ScatterPlot3D to each row which looks better but not perfekt.
Any ideas to build a "nice" picture?
Many thanks, also for answers to my other questions.
Hans Friedrich Steffani
--
Hans Friedrich Steffani
Institut fuer Elektrische Maschinen und Antriebe, TU Chemnitz
mailto:hans.steffani at e-technik.tu-chemnitz.de
http://www.tu-chemnitz.de/~hfst/
- Follow-Ups:
- Re: A 3D-list-plot problem
- From: Hartmut Wolf <hwolf@debis.com>
- Re: A 3D-list-plot problem