| 244 | } |
| 245 | |
| 246 | std::vector<float> CRoots::get_values(){ |
| 247 | std::vector<float> values; |
| 248 | for(int i = 0; i < this->root_num; ++i){ |
| 249 | values.push_back(this->roots[i].value()); |
| 250 | } |
| 251 | return values; |
| 252 | } |
| 253 | |
| 254 | //********************************************************* |
| 255 |