MathGroup Archive 2010

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

Search the Archive

Re: Generate #s

  • To: mathgroup at smc.vnet.net
  • Subject: [mg111046] Re: Generate #s
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Sun, 18 Jul 2010 01:04:26 -0400 (EDT)

No, it was generated by Mathematica. It is TraditionalForm.

Array[x, 5]

{x(1),x(2),x(3),x(4),x(5)}

% // StandardForm

{x[1], x[2], x[3], x[4], x[5]}

% // TraditionalForm

{x(1),x(2),x(3),x(4),x(5)}


Bob Hanlon

---- David Bailey <dave at removedbailey.co.uk> wrote: 

=============
On 16/07/10 12:00, Bob Hanlon wrote:
> data = Array[x, 10]
>
> {x(1),x(2),x(3),x(4),x(5),x(6),x(7),x(8),x(9),x(10)}
>
>

I guess you typed that in rather than generating it with Mathematica :)


In[2]:= data = Array[x, 10]

Out[2]= {x[1], x[2], x[3], x[4], x[5], x[6], x[7], x[8], x[9], x[10]}

David Bailey

http://www.dbaileyconsultancy.co.uk



  • Prev by Date: Re: Combine matrices of equal height
  • Next by Date: Re: Hatched shading?
  • Previous by thread: Re: Generate #s
  • Next by thread: Re: Generate #s