Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AMPS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant David Meadors
AMPS
Commits
80b9c717
Commit
80b9c717
authored
12 years ago
by
Grant David Meadors
Browse files
Options
Downloads
Patches
Plain Diff
Modified postProcessing to have consistent y limits in the output graphs
parent
a8ab5c8b
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
postProcessing.m
+4
-2
4 additions, 2 deletions
postProcessing.m
with
4 additions
and
2 deletions
postProcessing.m
+
4
−
2
View file @
80b9c717
...
...
@@ -93,13 +93,14 @@ figure(6000)
plot
(
rangematrix
(:,
1
),
smooth
(
rangematrix
(:,
2
)/
1e3
,
50
),
rangematrix
(:,
1
),
smooth
(
rangematrix
(:,
3
)/
1e3
,
50
))
grid
on
xlim
([
931e6
973e6
])
ylim
([
6
22
])
xlabel
(
'GPS time (seconds)'
)
ylabel
(
'Inspiral range (Megaparsecs)'
)
title
(
'Smoothed inspiral range improvement versus time'
)
beforeAvg
=
mean
(
rangematrix
(:,
2
)/
1e3
);
afterAvg
=
mean
(
rangematrix
(:,
3
)/
1e3
);
beforeNameSmooth
=
horzcat
(
'Before feedforward: '
,
num2str
(
beforeAvg
),
' Mpc arithmet
r
ic mean'
);
afterNameSmooth
=
horzcat
(
'After feedforward: '
,
num2str
(
afterAvg
),
' Mpc arithmet
r
ic mean'
);
beforeNameSmooth
=
horzcat
(
'Before feedforward: '
,
num2str
(
beforeAvg
),
' Mpc arithmetic mean'
);
afterNameSmooth
=
horzcat
(
'After feedforward: '
,
num2str
(
afterAvg
),
' Mpc arithmetic mean'
);
legend
(
beforeNameSmooth
,
afterNameSmooth
)
print
(
'-dpdf'
,
strcat
(
inspiralSmoothName
,
'.pdf'
));
print
(
'-dpng'
,
strcat
(
inspiralSmoothName
,
'.png'
));
...
...
@@ -109,6 +110,7 @@ figure(7000)
plot
(
rangematrix
(:,
1
),
smooth
(
rangematrix
(:,
4
),
50
))
grid
on
xlim
([
931e6
973e6
])
ylim
([
0.95
1.30
])
xlabel
(
'GPS time (seconds)'
)
ylabel
(
'Smoothed after/before feedforward inspiral range'
)
title
(
'Smoothed inspiral range gain versus time'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment