Great day to all of you; how can I assign the results in the attached picture, which is obtained from a Solve command, to variables? i.e. I need the values of c[-3,-3], c[-3,-2], .
asked Sep 15, 2020 at 11:38 13 4 4 bronze badges $\begingroup$ Look up Replace in the help. $\endgroup$ Commented Sep 15, 2020 at 11:42$\begingroup$ @JonathanShock, I tried to use Replace, but it does not work. Is it possible to send the file to you? $\endgroup$
Commented Sep 15, 2020 at 15:03Are you trying to retrieve the values? E.g.,
vars = Catenate@Array[c, , ] (* your "variables" *) rules = Thread[Rule[vars, RandomReal[, 36]]] (* example rules *) vars /. rules (* retrieve values *)
Or did you want to make some kinds of assignments? (If so, which?) For example, if you really (are you sure?) need all those rules to become assignments, you could
rules /. Set>