Re: FindRoot starting values
- To: mathgroup at smc.vnet.net
- Subject: [mg34241] Re: [mg34223] FindRoot starting values
- From: Sseziwa Mukasa <mukasa at jeol.com>
- Date: Sat, 11 May 2002 04:05:00 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
On Friday, May 10, 2002, at 03:05 AM, Kyriakos wrote: > > In my problem, the dimension of Q and Q0 is large, and > I cannot input the starting values one-by-one. The > fact that the way FindRoot accepts them is not in a > list form does not allow anything of the form > FindRoot[RHS == LHS, Table[{q[i], Q0[[i]]}, {i,3}] ] > or anything similar that I have tried. > > Do you have in mind a way of circumventing the > problem? > > Use a Sequence object: FindRoot[RHS==LHS,Sequence@@Table[{q[i],Q0[[i]]},{i,3}]] Regards, Ssezi