657
edits
m (→Sketchpad) |
|||
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>. |
edits