Re: Scaling Plot inside Row
- To: mathgroup at smc.vnet.net
- Subject: [mg87860] Re: Scaling Plot inside Row
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Fri, 18 Apr 2008 07:13:12 -0400 (EDT)
- Organization: Uni Leipzig
- References: <fu9frs$cdh$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi, ImageSize->1 an image a single pixel wide ? will be hard to see try plot = Plot[Sin[x], {x, 0, 6 Pi}, ImageSize -> 2000000]; matrix = TableForm[Table[10 i + j, {i, 4}, {j, 3}]]; Print[Row[{plot, matrix}, "\t"]] Regards Jens Alexey Popkov wrote: > Hello, > I am trying to control size of a Plot inside a Row that contains also > some TableForm with selectable text. This Row is an output from my > complicated program so I use Print[] to print it as output. I have > tried the following (this is an example): > > plot=Plot[Sin[x],{x,0,6 Pi}]; > matrix=TableForm[Table[10 i+j,{i,4},{j,3}]]; > Print[Row[{plot,matrix},"\t"]] > > All is fine but the plot is scaled down. I have tried to use > Graphics[plot,ImageSize->1] but it does not work. > How can I control size of the plot in the output? >