Skip to content
Snippets Groups Projects
Commit 8b3e8d01 authored by hurak's avatar hurak
Browse files

Moving the data directory to the root.

parent 02f60c68
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 added
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