Using rSymPy to solve a system of equations, I got the values of x and y that solve the system in a character string like this:
"[(1.33738072607023, 27.9489435205271)]"
How should i assign those 2 values to variables x, y?
|
|
|
To split the string, you can use:
This deletes everything that is not a space, a point or a digit. strsplit splits the string that's left in a vector. See also the related help files. Assignment can be done in a loop or using Gavin's function. I'd just name them.
For bigger datasets, I like to keep things together to avoid overloading the workspace with names. |
|||||||||||||
|
|
Here are some steps that will do what you want to do. Can't say it is the most efficient or elegant solution available...
The last line would return:
And we have
|
||||
|
|
|
|
|||
|
|
|
Here's a StackOverflow post that might help: |
|||||
|