Re: plot matrix
- To: mathgroup at smc.vnet.net
- Subject: [mg27777] Re: [mg27713] plot matrix
- From: BobHanlon at aol.com
- Date: Wed, 14 Mar 2001 04:07:37 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
data = Table[x^2 + y^2 + Random[Real, {-0.2, 0.2}], {x, -2, 2, 0.1}, {y, -2, 2, 0.1}]; ListPlot3D[data]; Bob Hanlon In a message dated 2001/3/13 4:13:11 AM, susuwin at post.kek.jp writes: >I have a big matrix of (4095 rows x 1280 column). >I want to plot those data in 3D graph just like listplot in both directions. >How shall i do for the x and y axis?