Skip to content
Snippets Groups Projects
Commit f72511f5 authored by xiyehu2's avatar xiyehu2
Browse files

sync changes

parent affcdbe5
No related branches found
No related tags found
No related merge requests found
...@@ -46,3 +46,7 @@ void Waveform::WaveformParam::setAmplitude( ...@@ -46,3 +46,7 @@ void Waveform::WaveformParam::setAmplitude(
) { ) {
this->amplitudes = otherAmp; this->amplitudes = otherAmp;
} }
void Waveform::WaveformParam::saveParam(std::string fileName) {
// this->freqTones
}
#pragma once #pragma once
#include <Eigen/Dense> #include <Eigen/Dense>
#include <string>
namespace Waveform { namespace Waveform {
class WaveformParam { class WaveformParam {
public: public:
...@@ -19,7 +20,7 @@ namespace Waveform { ...@@ -19,7 +20,7 @@ namespace Waveform {
void setFreqTone(const Eigen::VectorXi otherTone); void setFreqTone(const Eigen::VectorXi otherTone);
void setPhase(const Eigen::VectorXd otherPhase); void setPhase(const Eigen::VectorXd otherPhase);
void setAmplitude(const Eigen::VectorXd otherAmp); void setAmplitude(const Eigen::VectorXd otherAmp);
void saveParam(std::string fileName);
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment