たとえば、.csv から X[0] がポイント Y[0] に対応する X 配列と Y 配列に変換したデータ ファイルの補間に問題があります。
最後に滑らかなファイルを得るために、値の間を補間する必要があります。私は Picoscope を使用して関数を出力しています。これは、各行が時間的に等間隔であることを意味するため、Y 値のみを使用しているため、コードを見るときに奇妙な方法でこれを実行しようとしています。
処理する値の種類は次のとおりです。
X Y
0 0
2.5 0
2.5 12000
7.5 12000
7.5 3000
10 3000
10 6000
11 6625.254
12 7095.154
したがって、隣り合う 2 つの Y 値は同じで、それらの間の直線ですが、X = 10 のように変化すると、この例では正弦波になります。
私は補間などの方程式やここの他の投稿を見てきましたが、そのような数学を何年も行っていませんでした.2つの未知数があり、どのように考えることができないので、残念ながらもう理解できません.それをC#にプログラムします。
私が持っているものは次のとおりです。
int a = 0, d = 0, q = 0;
bool up = false;
double times = 0, change = 0, points = 0, pointchange = 0;
double[] newy = new double[8192];
while (a < sizeoffile-1 && d < 8192)
{
Console.Write("...");
if (Y[a] == Y[a+1])//if the 2 values are the same add correct number of lines in to make it last the correct time
{
times = (X[a] - X[a + 1]);//number of repetitions
if ((X[a + 1] - X[a]) > times)//if that was a negative number try the other way around
times = (X[a + 1] - X[a]);//number of repetitions
do
{
newy[d] = Y[a];//add the values to the newy array which replaces y later on in the program
d++;//increment newy position
q++;//reduce number of reps in this loop
}
while (q < times + 1 && d < 8192);
q = 0;//reset reps
}
else if (Y[a] != Y[a + 1])//if the 2 values are not the same interpolate between them
{
change = (Y[a] - Y[a + 1]);//work out difference between the values
up = true;//the waveform is increasing
if ((Y[a + 1] - Y[a]) > change)//if that number was a negative try the other way around
{
change = (Y[a + 1] - Y[a]);//work out difference bwteen values
up = false;//the waveform is decreasing
}
points = (X[a] - X[a + 1]);//work out amount of time between given points
if ((X[a + 1] - X[a]) > points)//if that was a negative try other way around
points = (X[a + 1] - X[a]);///work out amount of time between given points
pointchange = (change / points);//calculate the amount per point in time the value changes by
if (points > 1)//any lower and the values cause errors
{
newy[d] = Y[a];//load first point
d++;
do
{
if (up == true)//
newy[d] = ((newy[d - 1]) + pointchange);
else if (up == false)
newy[d] = ((newy[d - 1]) - pointchange);
d++;
q++;
}
while (q < points + 1 && d < 8192);
q = 0;
}
else if (points != 0 && points > 0)
{
newy[d] = Y[a];//load first point
d++;
}
}
a++;
}
これにより、近い波形が作成されますが、それでも非常に階段状です。
では、なぜこれがあまり正確ではないのか、誰にもわかりますか? その精度を向上させる方法は?または、配列を使用してこれを行う別の方法はありますか?
見てくれてありがとう:)