|
[Date Index]
[Thread Index]
[Author Index]
Re: loops in mathematica
- To: mathgroup at smc.vnet.net
- Subject: [mg116047] Re: loops in mathematica
- From: dr DanW <dmaxwarren at gmail.com>
- Date: Sun, 30 Jan 2011 03:32:13 -0500 (EST)
- References: <ii2c7c$r9o$1@smc.vnet.net>
If all you really wanted was a table of sigma values, then:
Table[sigma[alpha[i]], {i, 100}]
If you want both alpha and sigma, then
alphaTable = Table[alpha[i], {i, 100}]
sigmaTable = Map[ sigma, alphaTable ]
You can even use the Greek characters \alpha and \sigma, but that
doesn't post well on MathGroup.
Daniel
Prev by Date:
Remove Symbolize
Next by Date:
Mathematica 8 Home Edition
Previous by thread:
loops in mathematica
Next by thread:
Re: loops in mathematica
|