Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LOFAR Station Client
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
LOFAR2.0
LOFAR Station Client
Merge requests
!16
L2DTS-272
: Turn XSTs into a matrix before transposing, not afterwards
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
L2DTS-272
: Turn XSTs into a matrix before transposing, not afterwards
L2DTS-272-xst-transpose-bug
into
main
Overview
0
Commits
3
Pipelines
4
Changes
4
Merged
Jan David Mol
requested to merge
L2DTS-272-xst-transpose-bug
into
main
2 years ago
Overview
0
Commits
3
Pipelines
4
Changes
4
Expand
Closes
L2DTS-272
0
0
Merge request reports
Compare
main
version 2
0b183a14
2 years ago
version 1
6cc1fb99
2 years ago
main (base)
and
latest version
latest version
6d06259f
3 commits,
2 years ago
version 2
0b183a14
2 commits,
2 years ago
version 1
6cc1fb99
1 commit,
2 years ago
4 files
+
38
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
lofar_station_client/statistics/collector.py
+
3
−
3
Options
@@ -404,13 +404,13 @@ class XSTCollector(StatisticsCollector):
.
view
(
numpy
.
complex64
)
)
# reshape into [a][b]
block
=
block
.
reshape
(
self
.
BLOCK_LENGTH
,
self
.
BLOCK_LENGTH
)
if
xst_conjugated
[
subband_index
][
block_index
]:
# block is conjugated and transposed. process.
block
=
block
.
conjugate
().
transpose
()
# reshape into [a][b]
block
=
block
.
reshape
(
self
.
BLOCK_LENGTH
,
self
.
BLOCK_LENGTH
)
# compute destination in matrix
first_baseline
=
baseline_from_index
(
block_index
)
first_baseline
=
(
Loading