MATLAB: How to get standardized values from the given array of of normalized values

machine learningMATLABnormalizationscalingstandardization

I have a few PSD (Power Spectral Density) values exported from an excel sheet and all of them are normalized values. How to get standardized values from them.

Best Answer

I couldn't find any direct function for this. I suggest the following workaround: Convert your normalized values to actual values using MATLAB function
normalized2actual
Find the documentation here .
Once you have the actual data, you can have the zscore(standardized values) using
zscore
Find the documentation here .
Related Question