Re: 4D plot ?
- To: mathgroup at smc.vnet.net
- Subject: [mg73411] Re: 4D plot ?
- From: dh <dh at metrohm.ch>
- Date: Thu, 15 Feb 2007 05:10:58 -0500 (EST)
- References: <equnpe$iip$1@smc.vnet.net>
Hi Janos, if {x,y,z} is a spatial position, you could e.g. plot the information in w as a label at this position. E.g. assume w1=1, w2=2,.., the you get a plot by: d = {Text["1", {0, 0, 0}],Text["1", {0, 1, 0}], Text["1", {0, 0, 1}], Text["1", {1, 1, 0}]}; Show[Graphics3D[d]] Daniel János wrote: > Hi, > > What the gurus use to display 4D data ? > > lst={{w1,x1,y1,z1},{w2,x2,y2,z2},....} > > where lst is the result of some Position[set,{i}] query. The i in > {i} can be any small natural number below 1000. Obviously "set" has > that degree of nesting which always produce 4D data for any Position > [set,{i}] query. > > Thanks ahead, > > J=E1nos= >