Given a force object, returns a list of the frequencies that it is computing the spectrum for.
(f)
| 6090 | |
| 6091 | |
| 6092 | def get_force_freqs(f): |
| 6093 | """ |
| 6094 | Given a force object, returns a list of the frequencies that it is computing the |
| 6095 | spectrum for. |
| 6096 | """ |
| 6097 | return [f.freq[i] for i in range(f.freq.size())] |
| 6098 | |
| 6099 | |
| 6100 | def get_forces(f): |