SDRPlusPlus/src/cdsp/types.h

8 wiersze
97 B
C++

#pragma once
namespace cdsp {
struct complex_t {
float q;
float i;
};
};