write a matlab code to compute golomb sequence
Afficher commentaires plus anciens
Is there any function for golomb sequence in matlab?. write the code to display the golomb sequence [the numbers ].
Réponse acceptée
Plus de réponses (2)
Aamod Garg
le 7 Fév 2017
Modifié(e) : Aamod Garg
le 7 Fév 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
le 9 Fév 2017
if true
% code
end
Catégories
En savoir plus sur Signal Processing Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!