MathGroup Archive 2013

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

Search the Archive

Grids

  • To: mathgroup at smc.vnet.net
  • Subject: [mg131347] Grids
  • From: Mark <big.dog1 at att.net>
  • Date: Sun, 30 Jun 2013 03:28:41 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-outx@smc.vnet.net
  • Delivered-to: mathgroup-newsendx@smc.vnet.net

Hello:
'
I am trying to get the x1 and y1 results of a basic function displayed in two columns with a grid around each x1 and y1 entry.
'
However, my result only appears with a grid around the exterior of the x1 and y1 values, and the only the column headings.
There is a vertical divider between the x1 and y1 columns, but the row dividers are missing.

What is the syntax to get the row dividers to appear?

Thanks in advance, and below is what I have tried so far:

x1 = Range[-3, 3](*Define the range of x1 values.*)

g[x1_] := x1^2(*Define the function*)

y1 = g[x1](*Calculate the y values of the function*)

Out[21]= {9, 4, 1, 0, 1, 4, 9}
'---------------------------------------
'
Grid[{{xVal, yVal}, {Column[x1], Column[y1]}}, Frame -> All](*The result of this function in columar format*)
'---------------------------------------

'
I also tried the the below statement as well but it gives the same result.

Grid[{{xVal, yVal}, {Column[x1], Column[y1]}}, Frame -> All, Dividers -> All]

Mark



  • Prev by Date: Re: Create Modelica Models within Mathematica
  • Next by Date: Complex path integral wrong
  • Previous by thread: Text alignment within a cell
  • Next by thread: Complex path integral wrong