Also, to remove the annoyance of inexact case matches when you use the any of the HOSA functions, I'd recommend putting this line of code at the top of your script:
warning('off','MATLAB:dispatcher:InexactCaseMatch').
For some strange reason, all of the HOSA function file names are written in all caps.
Convert from upper to lower all files in both folder using this script:
files = dir;
for i = 3:length(files)
system(['REN ',lower(files(i).name),' ',lower(files(i).name)]);
end
Hi,
i have tried as described in the readme.txt. Unfortunately all file names and extentions are in uppercase after extracting !
Because of that no chance to use anything (like hosaver or hosademo).
Please advice what to do.
Comment only
24 Sep 2012
Lomb normalized periodogram
Both functions calculate the Lomb-Scargle periodogram (aka Gauss-Vanicek/Least-squares spectrum)
Comment only