Nothing
# Convert from real number to binary number
encode = function(real, lb, ub, m){
num = (real-lb)*(2^m-1)/(ub-lb)
bin = int2bin(num, m)
return(bin)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.