1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-04-06 11:39:02 -04:00

Add methods to print filter taps as Matlab vectors

This commit is contained in:
Jon Beniston 2023-03-03 16:29:22 +00:00
parent 95b46937a7
commit 0c05e6dee2
2 changed files with 28 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#pragma once
#include <cmath>
#include <cstdio>
#include "dsp/dsptypes.h"
#include "dsp/misc.h"
#include "export.h"
@ -57,6 +58,19 @@ public:
return acc;
}
// Print taps as a Matlab vector
void printTaps(const char *name)
{
printf("%s = [", name);
for (int i = 0; i <= m_taps.size() - 1; ++i) {
printf("%g ", m_taps[i]);
}
for (int i = m_taps.size() - 2; i >= 0; --i) {
printf("%g ", m_taps[i]);
}
printf("];\n");
}
protected:
void init(int nTaps)
{

View File

@ -20,6 +20,7 @@
#define INCLUDE_RAISEDCOSINE_H
#include <cmath>
#include <cstdio>
#include "dsp/dsptypes.h"
// Raised-cosine low-pass filter for pulse shaping, without intersymbol interference (ISI)
@ -131,6 +132,19 @@ public:
return acc;
}
// Print taps as a Matlab vector
void printTaps(const char *name)
{
printf("%s = [", name);
for (int i = 0; i <= m_taps.size() - 1; ++i) {
printf("%g ", m_taps[i]);
}
for (int i = m_taps.size() - 2; i >= 0; --i) {
printf("%g ", m_taps[i]);
}
printf("];\n");
}
private:
std::vector<Real> m_taps;
std::vector<Type> m_samples;