Skip to content

Instantly share code, notes, and snippets.

@hidsh
Created May 8, 2012 10:22
Show Gist options
  • Save hidsh/2634074 to your computer and use it in GitHub Desktop.
Save hidsh/2634074 to your computer and use it in GitHub Desktop.
scilab: disp
function my_disp(m)
printf(':%d\n',m(1));
if length(m)<=1 then
;
else
my_disp(m(2:length(m)))
end
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment