- use blaze matrix library

git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@944 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-11 08:57:45 +00:00
parent 8b030a96d6
commit e9accd96a9
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ CXXFLAGS_release := -O3 -flto
CFLAGS_release := -O3 -flto
LDFLAGS_release := -O3 -flto
TARGET_ARCH := -march=native
CXXFLAGS += -std=c++17
CXXFLAGS += -std=c++20
LIBS := -lstdc++ -lm -lGL -lX11 -lXext -lXinerama -lasound -ldl -lfreetype -lpthread -lrt
LDFLAGS += $(TARGET_ARCH) $(LIBDIR) -L/usr/X11R6/lib/
+2 -2
View File
@@ -136,7 +136,7 @@ void GraphComponent::receiverStatusChanged(ReceiverInterface *pReceiver)
for (i=0; i < w.size(); i++)
{
m_pCurves[j].m_pPointArray[i].x = (float)i;
m_pCurves[j].m_pPointArray[i].y = abs(w(i));
m_pCurves[j].m_pPointArray[i].y = abs(w[i]);
if (m_pCurves[j].m_pPointArray[i].y < minY)
{
@@ -157,7 +157,7 @@ void GraphComponent::receiverStatusChanged(ReceiverInterface *pReceiver)
for (i=0; i < w.size(); i++)
{
m_pCurves[j].m_pPointArray[i].x = (float)i;
m_pCurves[j].m_pPointArray[i].y = abs(w(i));
m_pCurves[j].m_pPointArray[i].y = abs(w[i]);
if (m_pCurves[j].m_pPointArray[i].y < minY)
{
+3 -1
View File
@@ -104,7 +104,9 @@
"hash_map": "cpp",
"armadillo": "cpp",
"matrixfunctions": "cpp",
"float.h": "c"
"float.h": "c",
"fir2.h": "c",
"sparseqr": "cpp"
}
}
}