MathGroup Archive 2006

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

Search the Archive

Applying rules to SparseArray

  • To: mathgroup at smc.vnet.net
  • Subject: [mg66360] Applying rules to SparseArray
  • From: "CoolGenie" <CGenie at gmail.com>
  • Date: Thu, 11 May 2006 02:13:56 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Hi!
Let's say I've a matrix like this one:
m=SparseArray[ {{1, 1} -> 1, {1, 2} ->2, {3, 2} -> x}, {3, 3} ];
which looks like this in MatrixForm:
1 2 0
0 0 0
0 x 0
where 'x' is a variable coefficient. Is there any way to apply a rule
{x->1} to this array? ( m/.{x->1} doesn't work )

Thanks in advance


  • Prev by Date: Re: Question on Map or Apply
  • Next by Date: Re: Picture
  • Previous by thread: Re: OT: simplex method
  • Next by thread: Re: Applying rules to SparseArray