Re: About Table
- To: mathgroup at smc.vnet.net
- Subject: [mg74982] Re: About Table
- From: Roger Bagula <rlbagula at sbcglobal.net>
- Date: Fri, 13 Apr 2007 02:08:02 -0400 (EDT)
- References: <evksst$rid$1@smc.vnet.net>
Evanescence wrote:
>Hello dear all:
>
>Then I want to have tableform
>
>Evanescence 2007 04 11
>
>
>
>
This is mostly a data entry/ typing problem:
a = {{ 0 , 0 , 3},
{ 0 , 0.5 , 6},
{ 0 , 1 , 9},
{0 , 1.5 , 4.4},
{ 0 , 2 , 6.7},
{0.5 , 0 , 5},
{ 0.5 , 0.5 , 3},
{ 0.5 , 1 , 6.2},
{0.5 , 1.5 , 3.7},
{ 0.5, 2 , 5.2},
{ 1 , 0 , 6.3}
{1 , 0.5 , 9},
{1 , 1 , 10},
{ 1 , 1.5 , 12},
{ 1 , 2 , 13.2}}
TableForm[a]
With added bonus of a visualization:
ListPlot3D[a]