add legend to axis octave code example
Example: octave plot legend
clf;
plot (rand (2));
title ("legend called with cellstr and string inputs for labels");
h = legend ({"foo"}, "bar");
legend (h, "location", "northeastoutside");
set (h, "fontsize", 20);