Signature: sys.free_response(final_time, initial_time=0.0, sample_rate=100, **kwargs)
Docstring:
Returns a data frame with monotonic time values as the index and
columns for each coordinate and measurement at the time value for that
row. Note that this data frame is stored on the system as the variable
``result`` until this method is called again, which will overwrite it.
Parameters
==========
final_time : float
A value of time in seconds corresponding to the end of the
simulation.
initial_time : float, optional
A value of time in seconds corresponding to the start of the
simulation.
sample_rate : integer, optional
The sample rate of the simulation in Hertz (samples per second).
The time values will be reported at the initial time and final
time, i.e. inclusive, along with times space equally based on the
sample rate.
Returns
=======
df : pandas.DataFrame
A data frame indexed by time with all of the coordinates and
measurements as columns.
File: /opt/conda/lib/python3.6/site-packages/resonance/system.py
Type: method