Graziano,
here you go with a code snippet that shows how to use that function
==========================
static char strUnits[256];
static double ConvSpectrum[512];
static WindowConst wndConstants;
static AnalysisLibErrType powError;
static double deltaF;
static double SpectrumArray[512];
static AnalysisLibErrType erroreSine;
static double sineArray[1024];
// Generating a sinewave, 1024 points
SinePattern (1024, 1.0, 0.0, 10, sineArray);
//Calculating Power Spectrum on the sine array --> 512 elements
AutoPowerSpectrum (sineArray, 512, 1.0, SpectrumArray, &deltaF);
//retrieving the windows constants structure from the sine array
ScaledWindow (sineArray, 1024, 0, &wndConstants);
//Converting Units
SpectrumUnitConversion (SpectrumArray, 512, 0, 0, 6, deltaF, wndConstants, ConvSpectrum, strUnits);
=====================================
I am not quite sure what you need to convert to.
Do you need to have values available for Power Spectral Density (Vrms^2/root Hz)?
let me know
AlessioD