-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged in fix_output (pull request #6)
fix: reset eurobench pi format and update reference pis
- Loading branch information
Showing
23 changed files
with
91 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% store_scalar.m | ||
% | ||
% Store a scalar into yaml file | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
function is_ok = store_scalar(filename, data) | ||
|
||
file_id = fopen(filename, "w"); | ||
|
||
fprintf(file_id, "type: \'scalar\'\n"); | ||
|
||
value_str = sprintf("value: %.5f\n", data); | ||
|
||
fprintf(file_id, value_str); | ||
fclose(file_id); | ||
is_ok = true; | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Eurobench_format_code/test/output/subject_01_30sts/CoM_work.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'vector' | ||
value: [24.11805, 58.74444] | ||
type: 'scalar' | ||
value: 678.03756 |
4 changes: 2 additions & 2 deletions
4
Eurobench_format_code/test/output/subject_01_30sts/CoP_stability.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'scalar' | ||
value: 0.11515 | ||
type: 'vector' | ||
value: [0.37768, 0.04183] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_01_30sts/kinematic_repeatability.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: 'vector' | ||
label: [Ankle, Knee, Hip, Trunk] | ||
value: [0.78648, 0.99112, 0.98944, 0.94391] | ||
value: [0.78648, 0.99112, 0.98944, 0.94836] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_01_30sts/subphases_duration.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: 'vector' | ||
label: [Flexion Momentum, Momentum Transfer, Extension] | ||
value: [0.21656, 0.19256, 0.62234] | ||
value: [0.19089, 0.21824, 0.62234] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_01_30sts/ult_overshoot.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: 'vector' | ||
label: [antero-posterior, medio-lateral] | ||
value: [0.01238, 0.01215] | ||
value: [0.04233, 0.00340] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_01_30sts/ult_time.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'scalar' | ||
value: 0.80038 | ||
value: 0.75294 |
4 changes: 2 additions & 2 deletions
4
Eurobench_format_code/test/output/subject_01_5sts/CoM_work.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'vector' | ||
value: [9.84384, 12.28107] | ||
type: 'scalar' | ||
value: 221.31481 |
4 changes: 2 additions & 2 deletions
4
Eurobench_format_code/test/output/subject_01_5sts/CoP_stability.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'scalar' | ||
value: 0.11301 | ||
type: 'vector' | ||
value: [0.40186, 0.04002] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_01_5sts/subphases_duration.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: 'vector' | ||
label: [Flexion Momentum, Momentum Transfer, Extension] | ||
value: [0.20790, 0.22040, 0.60494] | ||
value: [0.18289, 0.24541, 0.60494] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_01_5sts/ult_overshoot.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: 'vector' | ||
label: [antero-posterior, medio-lateral] | ||
value: [0.01413, 0.01007] | ||
value: [0.04413, 0.00419] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_01_5sts/ult_time.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'scalar' | ||
value: 0.95196 | ||
value: 0.88161 |
4 changes: 2 additions & 2 deletions
4
Eurobench_format_code/test/output/subject_02_5sts/CoM_work.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'vector' | ||
value: [3.40741, 343.27661] | ||
type: 'scalar' | ||
value: -1862.09669 |
4 changes: 2 additions & 2 deletions
4
Eurobench_format_code/test/output/subject_02_5sts/CoP_stability.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'scalar' | ||
value: 0.12424 | ||
type: 'vector' | ||
value: [0.41141, 0.02398] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_02_5sts/subphases_duration.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: 'vector' | ||
label: [Flexion Momentum, Momentum Transfer, Extension] | ||
value: [0.18292, 0.16103, 0.47527] | ||
value: [0.16415, 0.17979, 0.47527] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_02_5sts/ult_overshoot.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
type: 'vector' | ||
label: [antero-posterior, medio-lateral] | ||
value: [0.01333, 0.01131] | ||
value: [0.06211, 0.00319] |
2 changes: 1 addition & 1 deletion
2
Eurobench_format_code/test/output/subject_02_5sts/ult_time.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type: 'scalar' | ||
value: 0.67225 | ||
value: 0.47839 |