MathGroup Archive 2002

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Some questions about plotting.

  • To: mathgroup at smc.vnet.net
  • Subject: [mg34157] Re: Some questions about plotting.
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Tue, 7 May 2002 03:53:52 -0400 (EDT)
  • Organization: Universitaet Leipzig
  • References: <ab5i7e$jjn$1@smc.vnet.net>
  • Reply-to: kuska at informatik.uni-leipzig.de
  • Sender: owner-wri-mathgroup at wolfram.com

Hi,

is 

mat = Table[i + j, {i, 0, 31}, {j, 0, 31}];

gg=ListPlot3D[Reverse[mat], 
    TextStyle -> {FontFamily -> "Helvetica", FontSize -> 12}, 
    AxesLabel -> {"Row", "Column", ""}, 
    Ticks -> {Automatic, Table[{i, 30 - i}, {i, 0, 30, 10}], None}];

the plot you expect ?

And is

Block[{$DisplayFunction = Identity},
    gl = Show[gg, ViewPoint -> ({1.300, -2.400, 2.000} + {0.2, 0.2,
0})];
    gr = Show[gg, ViewPoint -> ({1.300, -2.400, 2.000} - {0.2, 0.2,
0})];
    ];
Show[GraphicsArray[{gl, gr}, GraphicsSpacing -> 0]]

your "stereo pair" ?

Regards
  Jens

Steve Gray wrote:
> 
>     I have a modest-size matrix (up to about 31x31) whose
> values I want to look at using ListPlot3D. Results are good
> except for a few things:
>     1. It's important to have matrix element 1,1 appear at
> the upper left corner of the plot and the axes numbered
> accordingly, but this is not what the plot gives by default.
> I don't see a way to reverse the axis labeling. Is there one?
>     2. I note that this option doesn't work for ListPlot3D:
> FontFamily\[Rule]Helvetica,FontSize\[Rule]12 Is there
> a way to make the axis labels bigger? When you enlarge
> the plot by dragging the labels stay the same size.
>     3. AxesLabel does not do anything useful, putting the
> labels together but not on the two axes. Can I get
> the axes labeled with for example "Row" and "Column"?
>     4. Is there a way to get two ListPlot3D's side by side?
> I want a stereo pair (same plot with different viewpoints).
> 
>     Thank you for any information.
> 
> Steve Gray.


  • Prev by Date: RE: Some questions about plotting.
  • Next by Date: Re: Rule application issue
  • Previous by thread: RE: Some questions about plotting.
  • Next by thread: RE: Some questions about plotting.