Skip to content
Snippets Groups Projects
Commit 2279719f authored by Hurak's avatar Hurak
Browse files

Removed the data files from the (untracked) work directory.

parent 8b3e8d01
No related branches found
No related tags found
No related merge requests found
# Data sets from experiments
## Open-loop experiment
Here we provide the data from the open-loop experiment `software/quanser_updated/q_as_ol.slx`.
Load the data into Matlab workspace using
```matlab
load measured_and_simulated_open_loop_responses.mat
```
Two new data structs then appear in the workspace
- `measured_ol_response`
- `simulated_ol_response`
Plot these using
```matlab
figure
plot(measured_ol_response.time, measured_ol_response.signals.values)
figure
plot(simulated_ol_response.time, simulated_ol_response.signals.values)
```
See the corresponding Simulink file for the meaning of the stored variables.
\ No newline at end of file
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment