Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

シグナルプロット

シグナルプロットは、等間隔の X 位置に Y 値を表示します。可能な限り、散布図の代わりにシグナルプロットを使用するべきです。

ScottPlot.Plot myPlot = new();

// サンプルデータを作成する
double[] sin = Generate.Sin(51);

// プロットにシグナルプロットを追加する
myPlot.Add.Signal(sin);

myPlot.SavePng("demo.png", 400, 300);
このレシピは、クイックスタートカテゴリにある多くのレシピの 1 つです