Changeset 214 in flair-src for trunk/demos/Sinus/src/Loop.cpp
- Timestamp:
- Feb 7, 2018, 5:49:27 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/demos/Sinus/src/Loop.cpp
r16 r214 24 24 #include <PushButton.h> 25 25 #include <DataPlot1D.h> 26 #include < cvmatrix.h>26 #include <Matrix.h> 27 27 28 28 using namespace std; … … 47 47 "1st order lawpass filter"); 48 48 sinus->GetPlot()->AddCurve( 49 firstLowPass-> Matrix()->Element(0),49 firstLowPass->GetMatrix()->Element(0), 50 50 DataPlot::Blue); // add output of the filter to signal's graph 51 51 … … 54 54 sinus, sinus->GetSetupLayout()->NewRow(), "3rd order lawpass filter", 3); 55 55 sinus->GetPlot()->AddCurve( 56 thirdLowPass-> Matrix()->Element(0),56 thirdLowPass->GetMatrix()->Element(0), 57 57 DataPlot::Yellow); // add output of the filter to signal's graph 58 58
Note:
See TracChangeset
for help on using the changeset viewer.