You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -45,26 +49,18 @@ public static void CalculateOutput()
45
49
publicstaticuintGetBinCount()=>DFT.BinCount;
46
50
47
51
/// <summary> Gets the current DFT output data. Make sure to call <see cref="CalculateOutput"/> before this. </summary>
48
-
/// <returns> The raw magnitudes of each DFT bin, length is <see cref="GetBinCount"/>. </returns>
52
+
/// <returns> The raw magnitudes of each DFT bin, array length is <see cref="GetBinCount"/>. This pointer will not change during runtime unless <see cref="Init(uint, uint, float, float)"/> is called again, so it is safe to reuse </returns>
/// <summary> Gets the central response frequencies of each DFT bin. </summary>
56
-
/// <returns> The frequency of each DFT bin in Hz, length is <see cref="GetBinCount"/>. </returns>
57
+
/// <returns> The frequency of each DFT bin in Hz, array length is <see cref="GetBinCount"/>. This pointer will not change during runtime unless <see cref="Init(uint, uint, float, float)"/> is called again, so it is safe to reuse </returns>
/// <summary> Gets the sensitivity range width of each bin, in number of bins. </summary>
64
-
/// <returns> The width of each bin in number of bins, length is <see cref="GetBinCount"/>. A value of 2 would mean that this bin stops responding to frequencies around the center of the bin above and below (this bin's range = 1, plus 0.5 bins on either side) </returns>
62
+
/// <remarks> A value of 2 would mean that this bin stops responding to frequencies around the center of the bin above and below (this bin's range = 1, plus 0.5 bins on either side) </remarks>
63
+
/// <returns> The width of each bin in number of bins, array length is <see cref="GetBinCount"/>. This pointer will not change during runtime unless <see cref="Init(uint, uint, float, float)"/> is called again, so it is safe to reuse </returns>
0 commit comments