MathGroup Archive 2013

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

Search the Archive

Re: Creating a list of 1x2 element arrays without procedural

  • To: mathgroup at smc.vnet.net
  • Subject: [mg132094] Re: Creating a list of 1x2 element arrays without procedural
  • From: Francisco Gutierrez <fgutiers2002 at yahoo.com>
  • Date: Thu, 5 Dec 2013 03:04:49 -0500 (EST)
  • 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
  • References: <20131203102355.DA0FA6A02@smc.vnet.net>
  • Reply-to: Francisco Gutierrez <fgutiers2002 at yahoo.com>

What about this Tony:
Flatten[Outer[List,Range[30,45,5],Range[-270,-240,10]],1]


On Tuesday, December 3, 2013 5:29 AM, Alexei Boulbitch <Alexei.Boulbitch at iee.lu> wrote:
Is there a way in Mathematica using built-in functions to create what the following procedural program does?

latlong = {}
Do[AppendTo[latlong, {i, j}] , {i, 30.0, 45.0,
  5.0}, {j, -270.0, -240.0, 10.0}];
latlong

Out:
{{30., -270.}, {30., -260.}, {30., -250.}, {30., -240.}, {35., \
-270.}, {35., -260.}, {35., -250.}, {35., -240.}, {40., -270.}, {40., \
-260.}, {40., -250.}, {40., -240.}, {45., -270.}, {45., -260.}, {45., \
-250.}, {45., -240.}}

Thanks!

-Tony



  • Prev by Date: Laptop numpad enter does not evaluate cell
  • Next by Date: Why FullForm[916.536 + 3.3] gives 919.8359999999999?`
  • Previous by thread: Re: Creating a list of 1x2 element arrays without procedural
  • Next by thread: Re: Data format AFTER import into Mathematica from Excel.xls worksheet