This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function unwrap(v, inplace=false) | |
# currently assuming an array | |
unwrapped = inplace ? v : copy(v) | |
for i in 2:length(v) | |
while unwrapped[i] - unwrapped[i-1] >= pi | |
unwrapped[i] -= 2pi | |
end | |
while unwrapped[i] - unwrapped[i-1] <= -pi | |
unwrapped[i] += 2pi | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Levenshtein" => :ok | |
"ReadStat" => :skipped | |
"Discretizers" => :fail | |
"SchumakerSpline" => :fail | |
"GaussQuadrature" => :fail | |
"SyntaxTree" => :ok | |
"Peaks" => :ok | |
"FredData" => :skipped | |
"RecurrenceAnalysis" => :ok | |
"MKLSparse" => :fail |