We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67a07e9 + 5451807 commit 25ce592Copy full SHA for 25ce592
README.md
@@ -38,7 +38,7 @@ double samplePeriod = sampleRate / 1000.0;
38
ScottPlot.Plot plt = new();
39
plt.Add.Signal(signal, samplePeriod);
40
plt.YLabel("Amplitude");
41
-plt.SavePng("time-series.png",500,500);
+plt.SavePng("time-series.png",500,200);
42
```
43
44
<div align="center">
@@ -65,10 +65,10 @@ double[] freq = FftSharp.FFT.FrequencyScale(psd.Length, sampleRate);
65
66
// plot the sample audio
67
ScottPlot.Plot plt = new ScottPlot.Plot();
68
-plt.AddScatterLines(freq, psd);
+plt.Add.ScatterLine(freq, psd);
69
plt.YLabel("Power (dB)");
70
plt.XLabel("Frequency (Hz)");
71
-plt.SaveFig("periodogram.png");
+plt.SavePng("periodogram.png",500,200);
72
73
74
0 commit comments