KaKiLa

Joined 16 November 2011
453 bytes added ,  16 November 2012
m
Line 3: Line 3:


= Sketchpad =
= Sketchpad =
== test syntax highlight ==
{{Code|Loading the file as polygon compatible with geometry package|<syntaxhighlight lang="octave" style="font-size:13px">
function y = deserializeInt (data)
  y = bitpack (
        cell2mat(
              arrayfun(
                        @(x)bitget(x,1:8), data,
                        "UniformOutput", false
                      )
                )', "uint16");
  y = double (y);
endfunction
</syntaxhighlight>}}
== getting help ==
== getting help ==
# know the function --> <code>help function_name</code> or <code>help function_name</code>.  
# know the function --> <code>help function_name</code> or <code>help function_name</code>.  
657

edits