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

Signal Generic

信号プロットは汎用データ型をサポートしていますが、通常は double が最も高性能です。

Signal.cs
ScottPlot.Plot myPlot = new();

int[] values = Generate.RandomIntegers(1000, -100, 100);

myPlot.Add.Signal(values);

myPlot.SavePng("demo.png", 400, 300);
このレシピは、信号プロットカテゴリにある多くのレシピの 1 つです