|
[Date Index]
[Thread Index]
[Author Index]
Re: How to get rid of the outer {}?
- To: mathgroup at smc.vnet.net
- Subject: [mg5539] Re: [mg5507] How to get rid of the outer {}?
- From: Don Piele <piele at cs.uwp.edu>
- Date: Thu, 19 Dec 1996 01:02:35 -0500
- Sender: owner-wri-mathgroup at wolfram.com
> Hi,
>
> I wish to use a command like
>
> Outer[ List, {0,1}, {0,1}, {0,1}, {0,1}]
>
> but with 30 (or more) times {0,1} instead of four.
> I can easily generate such a list by Table[ {0,1}, {30}]
> however it has an additional {}. How I can use this list
> in Outer?
>
> Thank you in adavnce,
> Zvi Wiener
>
>
Use
Distribute[Table[{0,1},{30}],List]
DP
Prev by Date:
Re: RSolve question
Next by Date:
3.0 on a win '95 laptop
Previous by thread:
Re: How to get rid of the outer {}?
Next by thread:
Re: How to get rid of the outer {}?
|