write a matlab code to compute golomb sequence
Show older comments
Is there any function for golomb sequence in matlab?. write the code to display the golomb sequence [the numbers ].
Accepted Answer
More Answers (2)
Aamod Garg
on 7 Feb 2017
Edited: Aamod Garg
on 7 Feb 2017
function [seq] = golomb(n)
%n is defined by user
a = zeros(1,n);
a(1,1) = 1;
for j = 2:n
a(1,j) = 1+a(1,j-a(1,a(1,j-1)));
seq = a;
end
pallarlamudi bharadwaj
on 9 Feb 2017
if true
% code
end
Categories
Find more on Signal Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!