Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/matx/operators/pwelch.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ namespace matx
index_t nperseg_;
index_t noverlap_;
index_t nfft_;
std::array<index_t, 2> out_dims_;
mutable matx::tensor_t<typename OpX::scalar_type, 2> tmp_out_;
std::array<index_t, 1> out_dims_;
mutable matx::tensor_t<typename OpX::scalar_type::value_type, 1> tmp_out_;

public:
using matxop = bool;
using scalar_type = typename OpX::scalar_type;
using scalar_type = typename OpX::scalar_type::value_type;
using matx_transform_op = bool;
using pwelch_xform_op = bool;

Expand Down