Skip to content

Commit

Permalink
Merge branch '207-fix-multi-stream-plots' into 'master'
Browse files Browse the repository at this point in the history
Resolve "Updating Multi-Stream Signal Plots"

Closes #207

See merge request barkhauseninstitut/wicon/hermespy!168
  • Loading branch information
adlerjan committed Feb 22, 2024
2 parents dad81a5 + 8470c77 commit e9148df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hermespy/core/visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def visualize(self, axes: VAT | None = None, *, title: str | None = None, **kwar

# Prepare the figure and axes for plotting
with Executable.style_context():
if axes:
if axes is not None:
_axes = axes
figure = axes.flat[0].get_figure()

Expand Down
2 changes: 1 addition & 1 deletion submodules/affect
Submodule affect updated 45 files
+1 −1 LICENSE
+0 −3 doc/requirements.txt
+1 −1 doc/source/conf.py
+2 −2 include/Module/Channel/Channel.hpp
+1 −1 include/Module/Decoder/Decoder_HIHO.hpp
+1 −1 include/Module/Decoder/Decoder_SIHO.hpp
+1 −1 include/Module/Decoder/Decoder_SISO.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Decoder_LDPC_BP.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding_inter.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Flooding/Decoder_LDPC_BP_flooding_inter.hxx
+1 −1 include/Module/Decoder/LDPC/BP/Horizontal_layered/Decoder_LDPC_BP_horizontal_layered.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Horizontal_layered/Decoder_LDPC_BP_horizontal_layered_inter.hpp
+6 −6 include/Module/Decoder/LDPC/BP/Horizontal_layered/Decoder_LDPC_BP_horizontal_layered_inter.hxx
+1 −1 include/Module/Decoder/LDPC/BP/Horizontal_layered/ONMS/Decoder_LDPC_BP_horizontal_layered_ONMS_inter.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Peeling/Decoder_LDPC_BP_peeling.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Vertical_layered/Decoder_LDPC_BP_vertical_layered.hpp
+1 −1 include/Module/Decoder/LDPC/BP/Vertical_layered/Decoder_LDPC_BP_vertical_layered_inter.hpp
+6 −6 include/Module/Decoder/LDPC/BP/Vertical_layered/Decoder_LDPC_BP_vertical_layered_inter.hxx
+4 −4 include/Module/Decoder/RS/Decoder_RS.hpp
+1 −1 include/Module/Encoder/Encoder.hpp
+7 −7 include/Module/Modem/Modem.hpp
+0 −3 include/Module/Module.hpp
+4 −4 include/Module/Puncturer/Puncturer.hpp
+4 −4 include/Module/Puncturer/Puncturer.hxx
+0 −6 include/Module/Socket.hpp
+0 −40 include/Module/Socket.hxx
+1 −1 include/Module/Source/Source.hpp
+8 −20 include/Module/Switcher/Switcher.hpp
+19 −57 include/Module/Switcher/Switcher.hxx
+0 −6 include/Module/Task.hpp
+1 −1 include/Tools/Sequence/Pipeline.hpp
+6 −17 include/Tools/Sequence/Sequence.hpp
+1 −1 lib/MIPP
+7 −8 src/Module/Decoder/RS/Decoder_RS.cpp
+1 −2 src/Module/Decoder/RS/Standard/Decoder_RS_std.cpp
+1 −8 src/Module/Extractor/RSC/Extractor_RSC.cpp
+0 −32 src/Module/Module.cpp
+0 −29 src/Module/Task.cpp
+3 −13 src/Simulation/BFER/Iterative/Simulation_BFER_ite.cpp
+13 −26 src/Simulation/BFER/Standard/Simulation_BFER_std.cpp
+0 −7 src/Tools/Sequence/Pipeline.cpp
+28 −165 src/Tools/Sequence/Sequence.cpp
+5 −5 src/Tools/system_functions.cpp
+1 −1 src/main.cpp

0 comments on commit e9148df

Please sign in to comment.