Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Aardvark Design Sweep
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mikael Henriksson
Aardvark Design Sweep
Commits
c13547a0
Commit
c13547a0
authored
2 years ago
by
Mikael Henriksson
Browse files
Options
Downloads
Patches
Plain Diff
csv_to_plot_single_file.m: fix in-data in non-generic branch
parent
92a37bb7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
csv_to_plot_single_file.m
+5
-4
5 additions, 4 deletions
csv_to_plot_single_file.m
with
5 additions
and
4 deletions
csv_to_plot_single_file.m
+
5
−
4
View file @
c13547a0
...
@@ -74,10 +74,10 @@ else
...
@@ -74,10 +74,10 @@ else
% in the frequency/area figure.
% in the frequency/area figure.
% Extract table data
% Extract table data
period
=
table2array
(
current
_data
(:,
1
));
period
=
table2array
(
in
_data
(:,
1
));
size
=
table2array
(
current
_data
(:,
2
));
size
=
table2array
(
in
_data
(:,
2
));
power
=
table2array
(
current
_data
(:,
3
));
power
=
table2array
(
in
_data
(:,
3
));
slack
=
table2array
(
current
_data
(:,
4
));
slack
=
table2array
(
in
_data
(:,
4
));
critical_path
=
period
-
min
(
zeros
(
length
(
period
),
1
),
slack
);
critical_path
=
period
-
min
(
zeros
(
length
(
period
),
1
),
slack
);
% Conditionally exlude negative slack points
% Conditionally exlude negative slack points
...
@@ -94,6 +94,7 @@ else
...
@@ -94,6 +94,7 @@ else
1000.
/
fig_periods
,
fig_size
,
...
1000.
/
fig_periods
,
fig_size
,
...
'LineWidth'
,
2
...
'LineWidth'
,
2
...
);
);
legend
(
LEGENDS
);
end
end
xlabel
(
'Frequency MHz'
);
xlabel
(
'Frequency MHz'
);
...
...
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