Re: Re: How to use "Apply" to do differentiation ?
- To: mathgroup at smc.vnet.net
- Subject: [mg114517] Re: Re: How to use "Apply" to do differentiation ?
- From: leigh pascoe <leigh at evry.inserm.fr>
- Date: Mon, 6 Dec 2010 06:13:48 -0500 (EST)
Is this what you want?
s={{x^5},{x^10}}
Map[D[#, x] &, s]
Out: {{5 x^4}, {10 x^9}}
LP