diff --git a/matlab/updated_scripts/zadoff_chu.m b/matlab/updated_scripts/zadoff_chu.m new file mode 100644 index 0000000..8922644 --- /dev/null +++ b/matlab/updated_scripts/zadoff_chu.m @@ -0,0 +1,4 @@ +function [sequence] = zadoff_chu(root, length) + sequence = reshape(exp(-1j * pi * root * (0:length - 1) .* (1:length) / length), [], 1); +end +